POST Login/ChangePassword
Request Information
URI Parameters
None.
Body Parameters
PasswordRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| Password | string |
None. |
|
| TokenID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"Password": "sample string 2",
"TokenID": "sample string 3"
}
application/xml, text/xml
Sample:
<PasswordRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Veripro.API.Models"> <Password>sample string 2</Password> <TokenID>sample string 3</TokenID> <UserID>1</UserID> </PasswordRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ContentResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | Object |
None. |
|
| ResponseMessage | string |
None. |
|
| Code | ResultCodes |
None. |
|
| APITransactionID | string |
None. |
|
| Result | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseObject": {},
"ResponseMessage": "sample string 2",
"Code": 200,
"APITransactionID": "sample string 3",
"Result": "OK"
}
application/xml, text/xml
Sample:
<ContentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Veripro.API.Base"> <APITransactionID>sample string 3</APITransactionID> <Code>OK</Code> <ResponseMessage>sample string 2</ResponseMessage> <ResponseObject /> </ContentResponse>