Skip to main content
GET
/
senders
curl --request GET \
  --url https://api.autosend.com/v1/senders \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "senders": [
      {
        "id": "60d5ec49f1b2c72d9c8b4567",
        "email": "[email protected]",
        "name": "Example Team",
        "replyTo": "[email protected]"
      },
      {
        "id": "60d5ec49f1b2c72d9c8b4568",
        "email": "[email protected]",
        "name": "No Reply",
        "replyTo": ""
      }
    ]
  }
}
curl --request GET \
  --url https://api.autosend.com/v1/senders \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "senders": [
      {
        "id": "60d5ec49f1b2c72d9c8b4567",
        "email": "[email protected]",
        "name": "Example Team",
        "replyTo": "[email protected]"
      },
      {
        "id": "60d5ec49f1b2c72d9c8b4568",
        "email": "[email protected]",
        "name": "No Reply",
        "replyTo": ""
      }
    ]
  }
}

Authorizations

Authorizations
string | header
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Senders retrieved successfully
success
boolean
Indicates if the request was successfulExample: true
data
object
Response data object