Skip to main content
POST
/
sender-numbers
Register a sender number
curl --request POST \
  --url https://business.tgo-eg.com/api/v1/sender-numbers \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "phone": "+201001187188",
  "display_name": "Support"
}
'
{
  "data": {
    "id": 123,
    "phone": "<string>",
    "display_name": "<string>",
    "verification_status": "pending_verification",
    "status": "pending_verification",
    "daily_limit_override": 123,
    "verified_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-Api-Key
string
header
required

Body

application/json
phone
string
required
Example:

"+201001187188"

display_name
string
Example:

"Support"

Response

Sender number created and OTP dispatched when the TGO Connect account exists.

data
object