(C) List Business Industries and Sell Types
Before creating the application, the related request requires specifying a business_industry
and a sell_type
. Therefore, an additional prerequisite is to run the ‘List Business Industries and Sell Types’ request.
Note
The response sample has been shortened since it contains many lines.
Example from the response: If the application is for a telecommunications equipment company that sells its merchandise via a website with a checkout page then the business_industry
value is 4812 and the sell_type
ID is ATS-0001.
business_industry
Includes data on the business industry.
sell_type
Includes data on the sell type.
{base_uri}/v1/verify/api/applications/list/sell/type/mcc
List Business Industries and Sell Types
curl -X get {base_uri}/verify/api/applications/list/sell/type/mcc -H 'access_key: your-access-key-here' -H 'Content-Type: application/json' -H 'idempotency: your-idempotency-parameter-here' -H 'salt: your-random-string-here' -H 'signature: your-calculated-signature-here' -H 'timestamp: your-unix-timestamp-here' -H 'api_timestamp: your-unix-timestamp-here'
{ "status": { "error_code": "", "status": "SUCCESS", "message": "", "response_code": "", "operation_id": "3a71e4d8-c138-44f2-bd9b-867cc9ebc1e5" }, "data": { "business_industry": { "Building services": [ { "id": 4812, "value": "Telecommunications Equipment including telephone sales", "sub_mcc": null } ], "sell_type": [ { "id": "ATS-0001", "value": "Website with a Checkout Page" } ] } } }