regis

<back to all web services

UnauthenticatedRegistrationCreateRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Registration/CreateForUnauthenticatedPerson/{uuid}
import Foundation
import ServiceStack

public class UnauthenticatedRegistrationCreateRequest : Codable
{
    public var uuid:String
    public var transaction_uuid:String
    public var section_uuid:String
    public var amount:Double
    public var is_audit:Bool

    required public init(){}
}

public class UnauthenticatedRegistrationCreateResponse : Codable
{
    public var responseStatus:ResponseStatus
    public var transaction_uuid:String
    public var course_name:String
    public var course_title:String
    public var amount:Double
    public var is_audit:Bool

    required public init(){}
}


Swift UnauthenticatedRegistrationCreateRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /Registration/CreateForUnauthenticatedPerson/{uuid} HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"uuid":"String","transaction_uuid":"String","section_uuid":"String","amount":0,"is_audit":false}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"transaction_uuid":"String","course_name":"String","course_title":"String","amount":0,"is_audit":false}