Kit · Example Payload

Create A Purchase

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

Create A Purchase is an example object payload from Kit, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarymethodpathtagrequest_bodyresponse

Example Payload

Raw ↑
{
  "summary": "Create a purchase",
  "method": "POST",
  "path": "/v4/purchases",
  "tag": "Purchases",
  "request_body": {
    "purchase": {
      "email_address": "string",
      "transaction_id": "string",
      "status": "string",
      "subtotal": 1.0,
      "tax": 1.0
    }
  },
  "response": {
    "purchase": {
      "id": 1,
      "transaction_id": "string",
      "subscriber_id": 1,
      "status": "string",
      "email_address": "string"
    }
  }
}