Retrieve DBA
Retrieves Doing Business As profile.
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
address
address_line1 stringAddress line 1
address_line2 stringAddress line 2
city stringCity
country stringCountry ISO 3166-1 code
post_code stringPostal code
region_id numberCountry region id
region_name stringCountry region name
- business_name string
Doing business as name
- company_registration_number string
Doing business as company registration number
- email string
Doing business as email
- vat_id string
Doing business as vat id
- website string
Doing business as website
{
"address": {
"address_line1": "string",
"address_line2": "string",
"city": "string",
"country": "string",
"post_code": "string",
"region_id": 0,
"region_name": "string"
},
"business_name": "string",
"company_registration_number": "string",
"email": "string",
"vat_id": "string",
"website": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Invalid_ Token
- Missing_ Token
- Not_ Authorized_ Token
Schema
- error_code string
Platform code for the error.
- message string
Short description of the error.
{
"error_code": "string",
"message": "string"
}
{
"error_code": "NOT_AUTHORIZED",
"error_message": "invalid access token"
}
{
"error_code": "NOT_AUTHORIZED",
"message": "access token required"
}
{
"error_code": "NOT_AUTHORIZED",
"error_message": "NOT_AUTHORIZED"
}