RocketCOMS

Retrieve a Brand

Retrieve a registered brand. This retrieves the brand details and status.

Endpoint

GET /v1/brands/{id}

Authorization Header

Authorization: Bearer <access_token>
or
Authorization: Basic <encodedString>
where <encodedString> is your <api-key>:<api-secret> string encoded using Base64 encoding

Path Parameters

id  REQUIRED

string (UUID)

Unique ID assigned to the brand in RocketCOMS.

Request Body

None

Returns

Returns the brand details and status. For details, see the Brand object.

SAMPLE RESPONSE

				
					{
  "status": "0000",
  "result": {
    "companyName": "ABC Inc.",
    "displayName": "ABC Mobile",
    "ein": "111111111",
    "einIssuingCountry": "US",
    "entityType": "PUBLIC_PROFIT",
    "vertical": "RETAIL",
    "website": "http://www.abcmobile.com",
    "stockSymbol": "ABC",
    "stockExchange": "NASDAQ",
    "firstName": "John",
    "lastName": "Doe",
    "phone": "+12024567890",
    "email": "johndoe@abc.com",
    "street": "123 6th Ave",
    "city": "New York",
    "state": "NY",
    "postalCode": "10001",
    "country": "US",
    "id": "d7b0e25f-30c9-456b-b287-6b3dcaa4b8f7",
    "businessAccountId": "67b25a5e-f90a-4491-9ee4-291ff290c1fe",
    "universalEin": "111111111",
    "cspId": "4e0c15a5-d798-46ff-8c50-2b30bd597abf",
    "countryCode": "US",
    "brandRelationship": "BASIC_ACCOUNT",
    "registrationScore": 0,
    "createdAt": "2022-04-20T00:18:06.347Z",
    "status": "ACTIVE",
    "lastStatus": "633eb3bb-7e78-447b-be04-e234dadfb629",
    "lastStatusAt": "2022-04-20T00:18:06.347Z",
    "rejectionReason": "string"
  }
}