Bubble · Example Payload

Bubble Data Create Example

No-CodeApplication PlatformDatabaseWorkflow AutomationPlugins

Bubble Data Create Example is an example object payload from Bubble, 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://myapp.bubbleapps.io/api/1.1/obj/property",
    "headers": {
      "Authorization": "Bearer 1a2b3c4d5e6f7g8h9i0j1k2l3m4n5o6p",
      "Content-Type": "application/json"
    },
    "body": {
      "address": "75 Wall St, New York, NY",
      "city": "Manhattan",
      "price": 5800,
      "bedrooms": 3
    }
  },
  "response": {
    "status": 201,
    "body": {
      "status": "success",
      "id": "1503408875694x944431186090727500"
    }
  }
}