# Single Send - Retry

{% hint style="danger" %}
We will be updating our response payload to include a `creatorId` field from **24 Feb 2025**. Please read the last section to find out where the amendment is and update your own systems if necessary, **before 24 Feb 2025.**
{% endhint %}

Retries a single failed message. The message will retain the same message ID.

The message retry will only go through if:

1. The message `latestStatus` is `failure`
2. If the message belongs to a batch, the `batch` status is either `messages_enqueued` or `messages_enqueuing_failed`

After a message is retried, the message `latestStatus` will be set to `created`.

The Single Send - Retry feature behaves the same way as the [Single Send ](https://postman-v2.guides.gov.sg/endpoints-for-api-users/single-send)feature.

Note that in your retry endpoint, the `messageId`  remains the same, and is generated from the original request in your [Single Send](https://postman-v2.guides.gov.sg/endpoints-for-api-users/single-send).

{% code title="Endpoint #3" overflow="wrap" %}

```
POST /campaigns/:campaignId/messages/:messageId/retry
```

{% endcode %}

**\[Now to 26 Jan 2025] Example response body**

{% code title="Example response body" overflow="wrap" %}

```json
{
    "createdAt": "2024-05-16T16:48:42.247+08:00",
    "updatedAt": "2024-05-16T16:48:59.157+08:00",
    "id": "<YOUR_GENERATED_MESSAGE_ID>",
    "recipient": "6522222222",
    "values": {
        "name": "Emily Yeo"
    },
    "fullMessage": "This is a test message used for training purposes.\n\nOpen Government Products\n\n---\n\nThis is a message to Emily Yeo.\n\n---\n\nThis is an automated message sent by the Singapore Government.",
    "latestStatus": "created",
    "templateBodyId": "<YOUR_TEMPALTE_BODY_ID>",
	"campaignId": "<YOUR_CAMPAIGN_ID>"
}
```

{% endcode %}

**\[From 24 Feb 2025] The `creatorId` field will be inserted in the response payload from 24 Feb 2025. Please amend your own code accordingly for**&#x20;

`"creatorId": "<USER_ID_OF_MESSAGE_CREATOR>"`

<figure><img src="https://862051585-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fl3mC1ibWq8HG4BKl4qlL%2Fuploads%2FjdIUxQtdjLVZPPagTXJP%2FScreenshot%202025-01-16%20at%2011.35.22%E2%80%AFAM.png?alt=media&#x26;token=f8a9c2b3-bcca-47b6-9452-3fdb563e27b2" alt=""><figcaption></figcaption></figure>
