POST api/v1/client/activation
Activate a new client registration.
Request Information
URI Parameters
None.
Body Parameters
ActivationBindingModelName | Description | Type | Additional information |
---|---|---|---|
Authentication | AuthenticationModel |
Required |
Request Formats
application/json, text/json
Sample:
{ "Authentication": { "Id": "170200123", "Key": "467512342123" } }
application/xml, text/xml
Sample:
<ActivationBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Payments.Api.Models"> <Authentication> <Id>170200123</Id> <Key>467512342123</Key> </Authentication> </ActivationBindingModel>
Response Information
Resource Description
RegistrationOutgoingModelName | Description | Type | Additional information |
---|---|---|---|
Message | MessageModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Message": { "Code": "(2 digit code reflecting result of request - 00 is good)", "Description": "(Message response in text depending upon request/result of request)" } }
application/xml, text/xml
Sample:
<RegistrationOutgoingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Payments.Api.Models"> <Message> <Code>(2 digit code reflecting result of request - 00 is good)</Code> <Description>(Message response in text depending upon request/result of request)</Description> </Message> </RegistrationOutgoingModel>