POST UserRegistration
Request Information
URI Parameters
None.
Body Parameters
UserRegistrationRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Portrait | string |
None. |
|
| FirstName | string |
None. |
|
| Surname | string |
None. |
|
| MiddleName | string |
None. |
|
| MUID | integer |
None. |
|
| Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Portrait": "sample string 1",
"FirstName": "sample string 2",
"Surname": "sample string 3",
"MiddleName": "sample string 4",
"MUID": 1,
"Token": "sample string 5"
}
application/xml, text/xml
Sample:
<UserRegistrationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AfiswitchCIOD.Models"> <Token>sample string 5</Token> <FirstName>sample string 2</FirstName> <MUID>1</MUID> <MiddleName>sample string 4</MiddleName> <Portrait>sample string 1</Portrait> <Surname>sample string 3</Surname> </UserRegistrationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | Response |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": {
"ResponseCode": 1,
"ResponseMessage": "sample string 2"
}
}
application/xml, text/xml
Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AfiswitchCIOD.Models">
<Response>
<ResponseCode>1</ResponseCode>
<ResponseMessage>sample string 2</ResponseMessage>
</Response>
</APIResponse>