> For the complete documentation index, see [llms.txt](https://docs.sparkloop.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sparkloop.app/api-v3/objects-schema/partnership-request-object.md).

# Partnership Request Object

## Partnership Request Object

A request this publication has sent asking another publication to recommend it back.

| Field                 | Type   | Description                                                         |
| --------------------- | ------ | ------------------------------------------------------------------- |
| `uuid`                | String | Partnership request UUID.                                           |
| `status`              | String | Request status (e.g. `pending`).                                    |
| `created_at`          | String | When the request was sent (ISO 8601).                               |
| `invited_publication` | Object | The publication invited to recommend back (**Publication Object**). |

**Example**

```json
{
  "uuid": "preq_77f0aa12",
  "status": "pending",
  "created_at": "2026-06-01T08:00:00.000Z",
  "invited_publication": {
    "uuid": "pub_9ac1f2",
    "name": "The Morning Brew",
    "description": "Business news you'll actually enjoy.",
    "logo_url": "https://assets.sparkloop.app/logos/pub_9ac1f2.png",
    "url": "https://morningbrew.com"
  }
}
```
