Message Delivery
Everything about Delivery Issues
Download OpenAPI description
Languages
Servers
https://rest.clicksend.com/
Request
Get all delivery issues
Get all delivery issues
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
| page | query | integer(int32) | false | Page number |
| limit | query | integer(int32) | false | Number of records per page |
Refer to Status Codes for definitions of HTTP status code responses.
This endpoint requires authentication,more info...
Security
basicAuth
https://rest.clicksend.com/v3/delivery-issues
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl --include \
--header "Authorization: Basic YXBpLXVzZXJuYW1lOmFwaS1wYXNzd29yZA==" \
'https://rest.clicksend.com/v3/delivery-issues'Response
application/json
{ "http_code": 200, "response_code": "SUCCESS", "response_msg": "Here is your result.", "data": { "total": 2, "per_page": 15, "current_page": 1, "last_page": 1, "next_page_url": null, "prev_page_url": null, "from": 1, "to": 2, "data": [ … ] } }
Request
Create delivery Issue
Create delivery Issue
Properties
| Name | Type | Required | Restrictions | Description |
|---|---|---|---|---|
| message_id | string | false | none | The message id of the message. |
| type | string | true | none | The type of message, must be one of the following values SMS, MMS, VOICE, EMAIL_MARKETING, EMAIL_TRANSACTIONAL, FAX, POST. |
| description | string | true | none | The description of the message. |
| client_comments | string | false | none | The user's comments. |
| email-address | string | true | none | The user's email address. |
Refer to Status Codes for definitions of HTTP status code responses.
This endpoint requires authentication,more info...
Security
basicAuth
https://rest.clicksend.com/v3/delivery-issues
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl --include \
--header "Authorization: Basic YXBpLXVzZXJuYW1lOmFwaS1wYXNzd29yZA==" \
--request POST \
--header "Content-Type: application/json" \
--data-binary "{
\"message_id\": \"B388828B-AD46-4366-8AD3-0305FF5E3FE5\",
\"type\": \"SMS\",
\"description\": \"This is a test\",
\"client_comments\": \"test\",
\"email_address\": \"john_doe@user.com\"
}" \
'https://rest.clicksend.com/v3/delivery-issues'Response
application/json
{ "http_code": 200, "response_code": "SUCCESS", "response_msg": "New delivery issue has been created.", "data": { "issue_id": 1, "user_id": 3820, "message_id": "B388828B-AD46-4366-8AD3-0305FF5E3FE5", "type": "sms", "description": "this is a test.", "date_added": 1481610495, "email_address": "test@user.com" } }