Optional: acting as Reseller

If you are registering a 10DLC campaign on behalf of third parties (e.g., your clients), you are required to also include your own contact information as part of the registration process. You can do so by including a resellerId in your POST campaign calls

The Reseller ID is a unique value to be shared by all workspaces, all brands, and all campaigns created under your Organization.

  • If you operate as a reseller you only need to obtain a reseller UUID once and reuse it in all your requests

  • If you intend to register one or more brands (for example multiple branches of your company) for your internal use you can NULL the field

You can create a Reseller via UI

you can retrieve information via the following method

List resellers in a workspace

get
Authorizations
Path parameters
workspaceIdstring · uuidRequired

The ID for the workspace.

Example: d386a801-ee8d-4aba-a7e4-78671bd3b11e
Query parameters
limitinteger · min: 1 · max: 99Optional

Limits the number of results to return per page. The default value is 10 and maximum is 99. If the nextPageToken is defined on response, you can use it to get remaining numbers. To know more, refer to the pagination section.

Default: 10
pageTokenstring · max: 8000Optional

Pagination token that keeps of track of the current position in the list. Use it to query remaining results. If not provided, the first page is returned. To learn more about the pagination, please refer to the pagination section on API Access Common API Usage section.

reversebooleanOptional

Order in which to retrieve the results. By default, the orders are in ascending order date. To get the results in descending order, set this parameter to true.

Default: false
Responses
200
OK
application/json
Responseall of
get
GET /workspaces/{workspaceId}/tcr-resellers HTTP/1.1
Host: 
Authorization: Bearer jwt
Accept: */*
200

OK

{
  "nextPageToken": "text",
  "results": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "organizationId": "123e4567-e89b-12d3-a456-426614174000",
      "status": "PENDING",
      "companyName": "ABC Inc.",
      "phone": "+12024567890",
      "email": "[email protected]",
      "createdAt": "2025-07-01T18:52:51.475Z",
      "updatedAt": "2025-07-01T18:52:51.475Z"
    }
  ]
}

Last updated

Was this helpful?