Skip to main content

Send a Service SMS to a user

POST /api/v1/users/service-sms

Description

Send a service SMS to a user.

Header:

  • Key: authorizer-api-key (Required)
  • Key: authorizer-api-code (Required)
  • Key: Content-Type: application/json
  • Key: Authorization: Bearer {{bearerToken}}

URL: /api/v1/users/service-sms

Response: The response is "Created" with a code of 201.

/api/v1/users/service-sms

Headers

Content-TypeValue
authorizer-api-keystring

Headers

Content-TypeValue
authorizer-api-codestring

Headers

Content-TypeValue
Content-Typeapplication/json

Body (raw)

{
"userId": "<string>",
"message": "<string>"
}

Response: 201

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /api/v1/users/service-sms \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!