POST api/EditAdhocUser
Request Information
URI Parameters
None.
Body Parameters
AdhocUserUpdateName | Description | Type | Additional information |
---|---|---|---|
SubscriberId | integer |
Required |
|
Name | string |
Required |
|
string |
Required |
||
ContactNumber | string |
None. |
|
DOB | string |
None. |
|
GenderId | integer |
None. |
|
PAN | string |
None. |
|
Organization | string |
None. |
|
IdentificationNumber | string |
Required |
|
AlternativeEmail | string |
None. |
|
CountryCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "SubscriberId": 1, "Name": "sample string 2", "Email": "sample string 3", "ContactNumber": "sample string 4", "DOB": "sample string 5", "GenderId": 6, "PAN": "sample string 7", "Organization": "sample string 8", "IdentificationNumber": "sample string 9", "AlternativeEmail": "sample string 10", "CountryCode": "sample string 11" }
application/xml, text/xml
Sample:
<AdhocUserUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Name>sample string 2</Name> <Email>sample string 3</Email> <ContactNumber>sample string 4</ContactNumber> <DOB>sample string 5</DOB> <GenderId>6</GenderId> <PAN>sample string 7</PAN> <Organization>sample string 8</Organization> <IdentificationNumber>sample string 9</IdentificationNumber> <AlternativeEmail>sample string 10</AlternativeEmail> <CountryCode>sample string 11</CountryCode> <SubscriberId>1</SubscriberId> </AdhocUserUpdate>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnObjectOfInt64Name | Description | Type | Additional information |
---|---|---|---|
IsSuccess | boolean |
None. |
|
Messages | Collection of string |
None. |
|
ErrorCode | integer |
None. |
|
Response | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsSuccess": true, "Messages": [ "sample string 1", "sample string 2" ], "ErrorCode": 2, "Response": 3 }
application/xml, text/xml
Sample:
<ReturnObjectOfInt64 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <IsSuccess>true</IsSuccess> <Messages> <string>sample string 1</string> <string>sample string 2</string> </Messages> <ErrorCode>2</ErrorCode> <Response>3</Response> </ReturnObjectOfInt64>