Deeplinks
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
androidURIstringRequired
iosURIstringRequired
macURIstringRequired
windowsURIstringRequired
defaultURIstringRequired
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
post/deeplinks
POST /v3/deeplinks HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 93
{
"androidURI": "text",
"iosURI": "text",
"macURI": "text",
"windowsURI": "text",
"defaultURI": "text"
}{
"success": true,
"error": "text",
"message": "text",
"data": {
"deeplinkUrl": "text"
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
longcodeIdnumberOptional
optInMessagestringRequired
senderNamestringOptional
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
post/deeplinks/imessage
POST /v3/deeplinks/imessage HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 58
{
"longcodeId": 1,
"optInMessage": "text",
"senderName": "text"
}{
"success": true,
"error": "text",
"message": "text",
"data": {
"deeplinkUrl": "text"
}
}Last updated
Was this helpful?