1. User
Nifteem
  • Dispatch Messages
    • Request a message dispatch
      POST
    • Dispatch messages info
      GET
    • Cancel a message dispatch
      DELETE
  • Manage templates
    • Get all templates
      GET
  • User
    • User Information
      GET
  • Webhook for message status updates
  • Webhook for incoming message notification
  • Schemas
    • Channel
    • DispatchLogStatus
    • WebhookOutDispatchStatusPayload
    • WebhookOutEvent
    • WebhookOutModule
    • InMessageType
    • WebhookOutIncomingMessageDetailPayload
    • WebhookOutIncomingMessagePayload
    • ChannelIdentifierType
    • DispatchApiRequest
    • DispatchApiRequestChannelRcs
    • DispatchApiRequestChannelSms
    • DispatchApiRequestChannelWhatsapp
    • DispatchApiRequestChannels
    • DispatchApiRequestContent
    • DispatchApiRequestMessage
    • DispatchApiRequestMessageContentDocument
    • DispatchApiRequestMessageContentImage
    • DispatchApiRequestMessageContentText
    • DispatchApiRequestMessageContentVideo
    • DispatchApiRequestMessageTemplate
    • DispatchApiRequestRecipient
    • DispatchApiRequestRecipientIdentifier
    • DispatchApiRequestTranslation
    • SmsEncodingType
    • Template
    • TemplateApi
    • DispatchApi
    • DispatchApiMessage
    • DispatchApiMessageStatus
  1. User

User Information

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

Request

None

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠400
🟠401
🟠403
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://prod.your-api-server.com/v1/api/user'
Response Response Example
200 - Success
{
    "id": "0FAMV3SY611FS",
    "company": "My Company Srl",
    "email": "mycompany@ag5dksgh367rfgsol2.com",
    "language": "it",
    "timezone": "Europe/Rome",
    "rcsSenders": [
        {
            "id": "0FCB1SJSVEHKZ",
            "agentName": "Agent Default"
        }
    ],
    "smsSenders": [
        {
            "id": "0FAPP18XJHDZR",
            "type": "ALPHA",
            "sender": "MyCompany"
        }
    ],
    "whatsappSenders": [
        {
            "id": "0F9EEPBNGGDP9",
            "displayPhoneNumber": "+390000000000",
            "verifiedName": "My Company"
        }
    ]
}
Modified at 2026-06-04 06:45:36
Previous
Get all templates
Next
Webhook for message status updates
Built with