Bubble · Example Payload

Bubble Workflow Trigger Example

No-CodeApplication PlatformDatabaseWorkflow AutomationPlugins

Bubble Workflow Trigger 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/wf/register_user",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "email": "kinlane@example.com",
      "password": "correct horse battery staple",
      "plan": "starter"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "status": "success",
      "response": {
        "user_id": "1503408875694x944431186090727600",
        "auth_token": "abc123..."
      }
    }
  }
}