Skip to main content
Event triggered when a partner submits an application to join your partner program.

Response body parameters

All webhook payloads follow a consistent top-level structure with event-specific data nested within the data object.
id
string
The event ID.
event
string
The event type that triggered the webhook (e.g., partner.application_submitted).
createdAt
string
ISO 8601 timestamp when the webhook event was created.
data
object
Event-specific data containing detailed information about the event. The data object for the partner.application_submitted event contains the following parameters:
{
  "id": "evt_KleiO4HBwZFbO1vZLWIPZ2AtX",
  "event": "partner.application_submitted",
  "createdAt": "2025-11-06T11:25:59.264Z",
  "data": {
    "id": "pga_1K9CEN4JWYACNHS4DR3PWNR2F",
    "createdAt": "2025-11-06T11:25:59.264Z",
    "partner": {
      "id": "pn_1K9BZE1K285BSTX4W6MPKXJFZ",
      "name": "Matthew Hayden",
      "email": "matthew@example.com",
      "companyName": null,
      "image": null,
      "description": "I'm a content creator who works with brands to grow their business.",
      "country": "US",
      "groupId": "grp_1K9BZE1K2RWYAWB2K1YN5TY7F",
      "status": "pending",
      "website": null,
      "youtube": null,
      "twitter": null,
      "linkedin": null,
      "instagram": null,
      "tiktok": null
    },
    "applicationFormData": [
      {
        "label": "Website",
        "value": "https://example.com/"
      },
      {
        "label": "How do you plan to promote Acme?",
        "value": "I'll promote Acme by sharing it on my social platforms and writing a blog post."
      },
      {
        "label": "Any additional questions or comments?",
        "value": null
      }
    ]
  }
}