RocketCOMS

List All API Keys

Retrieve all API keys belonging to a Business Account. The BA_ADMIN role is required to call this API.

Endpoint

GET /v1/accounts/{accountId}/apikeys

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

accountId REQUIRED

string

RocketCOMS Business Account ID.

Request Body

None

Returns

Returns the API keys for the Business Account.

id

string (UUID)

Unique ID used by RocketCOMS to identify the API key/secret pair.

key

string

API key.

SAMPLE RESPONSE

				
					{
  "status": "0000",
  "result": [
    {
      "id": "ba68bc22-d512-4467-8a54-e92d8e8a9c53",
      "key": "0cd7f9b65ed249c59b9bcd161016fe4b"
    }
  ]
}