doordash · JSON Structure

Doordash Onboarding Webhook Payload Structure

OnboardingWebhookPayload structure from DoorDash API

Type: object Properties: 5

OnboardingWebhookPayload is a JSON Structure definition published by doordash, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

event_type store_id status message timestamp

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-structure/doordash-onboarding-webhook-payload-structure.json",
  "name": "OnboardingWebhookPayload",
  "description": "OnboardingWebhookPayload structure from DoorDash API",
  "type": "object",
  "properties": {
    "event_type": {
      "type": "string",
      "description": "The type of onboarding event.",
      "enum": [
        "store_activated",
        "store_deactivated",
        "onboarding_completed",
        "onboarding_failed"
      ],
      "example": "store_activated"
    },
    "store_id": {
      "type": "string",
      "description": "The merchant-supplied store identifier.",
      "example": "D-12345"
    },
    "status": {
      "type": "string",
      "description": "The onboarding status.",
      "example": "active"
    },
    "message": {
      "type": "string",
      "description": "Additional details about the onboarding event.",
      "example": "example"
    },
    "timestamp": {
      "type": "datetime",
      "description": "When the onboarding event occurred.",
      "example": "2026-06-02T14:30:00Z"
    }
  }
}