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

Authorizations

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

Path Parameters

senderId
string
required
The unique identifier of the sender (id).Example: "60d5ec49f1b2c72d9c8b4567"

Response

Sender retrieved successfully
success
boolean
Indicates if the request was successfulExample: true
data
object
The sender object