Vibes Platform · Example Payload

Vibes Platform Createevent Example

Mobile MarketingMobile MessagingPush NotificationsSMSMMSBroadcast MessagingAcquisition CampaignsSubscription ManagementWallet PassesRCS

Vibes Platform Createevent Example is an example object payload from Vibes Platform, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://public-api.vibescm.com/companies/ABC123/events",
    "headers": {
      "Authorization": "Basic dXNlcm5hbWU6cGFzc3dvcmQ=",
      "Content-Type": "application/json",
      "Accept": "application/json"
    },
    "body": {
      "event_type": "cart_abandoned",
      "person_key": "person_e4f5a6b7",
      "attributes": {
        "cart_value": "45.99",
        "cart_url": "https://shop.example.com/cart/xyz123",
        "first_name": "Jane"
      }
    }
  },
  "response": {
    "status": 201,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "id": "evt_d8e9f0a1",
      "event_type": "cart_abandoned",
      "person_key": "person_e4f5a6b7",
      "status": "queued",
      "created_at": "2026-05-03T14:30:00Z"
    }
  }
}