POST api/LookupAccount
Request Information
URI Parameters
None.
Body Parameters
LookupAccountParametersName | Description | Type | Additional information |
---|---|---|---|
Country | string |
None. |
|
PhoneNumber | string |
None. |
|
APIKey | globally unique identifier |
Required |
|
Signature | string |
Required |
|
Nonce | integer |
Required |
Request Formats
application/json, text/json
Sample:
{ "Country": "sample string 1", "PhoneNumber": "sample string 2", "APIKey": "14d69361-7ff2-4f9e-8cdc-e70749b01079", "Signature": "sample string 4", "Nonce": 5 }
application/xml, text/xml
Sample:
<LookupAccountParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CoinCornerAPI.Areas.V3.Controllers.Remittance"> <APIKey xmlns="http://schemas.datacontract.org/2004/07/CoinCorner.Core">14d69361-7ff2-4f9e-8cdc-e70749b01079</APIKey> <Nonce xmlns="http://schemas.datacontract.org/2004/07/CoinCorner.Core">5</Nonce> <Signature xmlns="http://schemas.datacontract.org/2004/07/CoinCorner.Core">sample string 4</Signature> <Country>sample string 1</Country> <PhoneNumber>sample string 2</PhoneNumber> </LookupAccountParameters>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseOfRemittanceAccountName | Description | Type | Additional information |
---|---|---|---|
Valid | boolean |
None. |
|
Message | string |
None. |
|
Error | string |
None. |
|
Value | RemittanceAccount |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.