Link Tags
Create Tag POST /link-tags
Get Tag GET /link-tags/{linkTagId}
Update Tag PATCH /link-tags/{linkTagId}
Delete Tag DELETE /link-tags/{linkTagId}
List Tags GET /link-tags
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
tagstringRequired
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
post
/link-tagsPOST /v3/link-tags HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 14
{
"tag": "text"
}{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"tag": "text"
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
linkTagIdstringRequired
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get
/link-tags/{linkTagId}GET /v3/link-tags/{linkTagId} HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"tag": "text"
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
linkTagIdstringRequired
Body
tagstringRequired
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
patch
/link-tags/{linkTagId}PATCH /v3/link-tags/{linkTagId} HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 14
{
"tag": "text"
}{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"tag": "text"
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
linkTagIdstringRequired
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
delete
/link-tags/{linkTagId}DELETE /v3/link-tags/{linkTagId} HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": null
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
linkIdnumberOptional
tagstringOptional
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get
/link-tagsGET /v3/link-tags HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"rows": [
{
"id": 1,
"tag": "text"
}
],
"page": 1,
"pageSize": 1,
"total": 1
}
}Last updated
Was this helpful?