GET
/
api
/
channel
/
accounts
List Channel Accounts
curl --request GET \
  --url https://api.embedreach.com/api/channel/accounts
{
  "success": true,
  "message": "<string>",
  "data": {
    "results": [
      {
        "id": "<string>",
        "name": "<string>",
        "createdAt": "<string>",
        "channelIntegrationId": "<string>",
        "channelAccountMetadata": {
          "type": "reach-managed",
          "baseDomain": "<string>",
          "dkimVerified": true,
          "verifiedReturnPath": true
        }
      }
    ],
    "pagination": {
      "total": 123,
      "hasNextPage": true,
      "cursor": "<string>"
    }
  }
}

Headers

reach-tenant-id
string

If using a platform scoped JWT, you can pass in a header to impersonate a specific tenant to impersonate the request as.

Query Parameters

cursor
string

The cursor to start from

limit
number | null

The limit of items to return, default is 100

Response

200
application/json

Status 200 response

The response is of type object.