GET
/
api
/
channel
/
senders
List Channel Senders
curl --request GET \
  --url https://api.embedreach.com/api/channel/senders
{
  "success": true,
  "message": "<string>",
  "data": {
    "results": [
      {
        "id": "<string>",
        "name": "<string>",
        "channelAccountId": "<string>",
        "channelSenderMetadata": {
          "userPart": "<string>",
          "emailReplyTo": "<string>",
          "from": "<string>",
          "messageServiceSid": "<string>",
          "emailFromName": "<string>",
          "baseDomain": "<string>",
          "friendlyName": "<string>"
        }
      }
    ],
    "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.