User Information

GET /v1/api/user

Returns the main information of the authenticated user along with senders configurations (SMS, RCS, and WhatsApp)

Responses

GET /v1/api/user
curl \
 --request GET 'https://api.nifteem.com/v1/api/user' \
 --header "X-API-Key: $API_KEY"
Response examples (200)
{
  "id": "0FAMV3SY611FS",
  "email": "mycompany@ag5dksgh367rfgsol2.com",
  "company": "My Company Srl",
  "language": "it",
  "timezone": "Europe/Rome",
  "rcsSenders": [
    {
      "id": "0FCB1SJSVEHKZ",
      "agentName": "Agent Default"
    }
  ],
  "smsSenders": [
    {
      "id": "0FAPP18XJHDZR",
      "type": "ALPHA",
      "sender": "MyCompany"
    }
  ],
  "whatsappSenders": [
    {
      "id": "0F9EEPBNGGDP9",
      "verifiedName": "My Company",
      "displayPhoneNumber": "+390000000000"
    }
  ]
}