Retrieve the details of a specific sender identity by ID using the AutoSend API.
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]"
}
}
<token>, where <token> is your auth token."60d5ec49f1b2c72d9c8b4567"trueShow child attributes
"60d5ec49f1b2c72d9c8b4567""[email protected]""Example Team""[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]"
}
}