Red Hat 3scale · Example Payload

Red Hat 3Scale Create Account Example

API GatewayAPI ManagementDeveloper PortalEnterpriseRed Hat

Red Hat 3Scale Create Account Example is an example object payload from Red Hat 3scale, 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://your-domain-admin.3scale.net/admin/api/accounts.json",
    "headers": {
      "Content-Type": "application/x-www-form-urlencoded"
    },
    "body": {
      "access_token": "admin_token_abc123",
      "org_name": "Acme Corp",
      "username": "john.doe",
      "email": "john.doe@acme.com",
      "password": "SecurePass123!"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "account": {
        "id": 12345,
        "created_at": "2026-05-02T10:00:00Z",
        "updated_at": "2026-05-02T10:00:00Z",
        "state": "pending",
        "org_name": "Acme Corp",
        "links": [
          {
            "rel": "self",
            "href": "/admin/api/accounts/12345"
          }
        ]
      }
    }
  }
}