POST api/LookupAccount

Request Information

URI Parameters

None.

Body Parameters

LookupAccountParameters
NameDescriptionTypeAdditional 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": "bd9baa1b-8e7e-4f5b-8533-376cec37f286",
  "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">bd9baa1b-8e7e-4f5b-8533-376cec37f286</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:

Sample not available.

Response Information

Resource Description

ResponseOfRemittanceAccount
NameDescriptionTypeAdditional information
Valid

boolean

None.

Message

string

None.

Error

string

None.

Value

RemittanceAccount

None.

Response Formats

application/json, text/json

Sample:

Sample not available.