# Get all sender settings

You can return information about all sender settings.

GET /sender-settings/

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2"
"https://<your_app_subdomain>.user.com/api/public/sender-settings/"

# Response

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "name": "John Doe",
            "from_email": "john@example.com",
            "reply_to": "support@example.com",
            "sender_name": "John",
            "description": "John from IT"
        },
        {
            "id": 2,
            "name": "Jane Doe",
            "from_email": "jane@example.com",
            "reply_to": "support@example.com",
            "sender_name": "Jane",
            "description": "Jane from marketing"
        }
    ]
}