{ "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" } ] } } } }