List seats
GET/api/v2/seats
Retrieve a list of seats (users) for the authenticated company. Use the returned seat_id
values when sending messages with the seat_id parameter to attribute activity to a specific rep.
List seats
curl https://api.sendblue.co/api/v2/seats \
-H "sb-api-key-id: $SENDBLUE_API_API_KEY" \
-H "sb-api-secret-key: $SENDBLUE_API_API_SECRET"[
{
"account": "acmeco",
"created_at": "2024-06-15T18:24:01Z",
"email": "[email protected]",
"first_name": "Jane",
"forwarding_number": "+19998887777",
"last_name": "Doe",
"seat_id": "550e8400-e29b-41d4-a716-446655440000"
}
]Returns Examples
[
{
"account": "acmeco",
"created_at": "2024-06-15T18:24:01Z",
"email": "[email protected]",
"first_name": "Jane",
"forwarding_number": "+19998887777",
"last_name": "Doe",
"seat_id": "550e8400-e29b-41d4-a716-446655440000"
}
]