Everything about Delivery Issues
Get all delivery issues
Get all delivery issues
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.
Successful response
curl --include \ --header "Authorization: Basic YXBpLXVzZXJuYW1lOmFwaS1wYXNzd29yZA==" \ 'https://rest.clicksend.com/v3/delivery-issues'
{- "http_code": 200,
- "response_code": "SUCCESS",
- "response_msg": "Here is your result.",
- "data": [
- {
- "issue_id": 1,
- "user_id": 3820,
- "message_id": "B388828B-AD46-4366-8AD3-0305FF5E3FE5",
- "type": "sms",
- "description": "this is a test.",
- "client_comments": null,
- "support_comments": null,
- "status": null,
- "date_added": 1481610495,
- "resolved": 0,
- "email_address": "test@user.com"
}, - {
- "issue_id": 2,
- "user_id": 3820,
- "message_id": "90396A38-146B-46C4-A455-675F620C2E05",
- "type": "sms",
- "description": "this is a test.",
- "client_comments": null,
- "support_comments": null,
- "status": null,
- "date_added": 1481610495,
- "resolved": 0,
- "email_address": "test@user.com"
}, - {
- "issue_id": 3,
- "user_id": 3820,
- "message_id": "4ECFB6CB-0300-45EC-96E1-5AB189432AF5",
- "type": "sms",
- "description": "this is a test.",
- "client_comments": null,
- "support_comments": null,
- "status": null,
- "date_added": 1481611389,
- "resolved": 0,
- "email_address": "test@user.com"
}
]
}
Create delivery Issue
Create delivery Issue
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.
Successful response
{- "message_id": "{{message_id}}",
- "type": "EMAIL_MARKETING",
- "description": "test",
- "email_address": "test@test.com",
- "client_comments": "test",
- "support_comments": "test",
- "resolved": true
}
{- "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"
}
}