> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mosaic.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Social Post

> Delete a social post.

Deletes a social post.

Use the `post_id` returned by `POST /social/post`.

## Request

```bash theme={null}
curl -X DELETE "https://api.mosaic.so/social/post/[post_id]" \
  -H "Authorization: Bearer mk_your_api_key"
```

## Body Parameters

| Field                  | Type          | Required | Description                                                                                                     |
| ---------------------- | ------------- | -------- | --------------------------------------------------------------------------------------------------------------- |
| `social_connection_id` | string (uuid) | No       | Delete using one specific connected account. Useful when a post targets multiple accounts on the same platform. |

## Response

```json theme={null}
{
  "post_id": "2d8ca860-f8e0-4f3f-9f2c-337ead6ed91e",
  "status": "rejected"
}
```
