Stytch · Schema
api_b2b_idp_v1_b2b_idp_oauth_AuthorizeStartResponse
AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools
Properties
| Name | Type | Description |
|---|---|---|
| request_id | string | Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug |
| member_id | string | Globally unique UUID that identifies a specific Member. |
| member | object | The [Member object](https://stytch.com/docs/b2b/api/member-object) |
| organization | object | The [Organization object](https://stytch.com/docs/b2b/api/organization-object). |
| client | object | |
| consent_required | boolean | Whether the user must provide explicit consent for the authorization request. |
| scope_results | array | Details about each requested scope. |
| status_code | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/api_b2b_idp_v1_b2b_idp_oauth_AuthorizeStartResponse",
"title": "api_b2b_idp_v1_b2b_idp_oauth_AuthorizeStartResponse",
"type": "object",
"properties": {
"request_id": {
"type": "string",
"description": "Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug an issue."
},
"member_id": {
"type": "string",
"description": "Globally unique UUID that identifies a specific Member."
},
"member": {
"$ref": "#/components/schemas/api_organization_v1_Member",
"description": "The [Member object](https://stytch.com/docs/b2b/api/member-object)"
},
"organization": {
"$ref": "#/components/schemas/api_organization_v1_Organization",
"description": "The [Organization object](https://stytch.com/docs/b2b/api/organization-object)."
},
"client": {
"$ref": "#/components/schemas/api_connectedapps_v1_ConnectedAppPublic"
},
"consent_required": {
"type": "boolean",
"description": "Whether the user must provide explicit consent for the authorization request."
},
"scope_results": {
"type": "array",
"items": {
"$ref": "#/components/schemas/api_b2b_idp_v1_ScopeResult"
},
"description": "Details about each requested scope."
},
"status_code": {
"type": "integer",
"format": "int32"
}
},
"required": [
"request_id",
"member_id",
"member",
"organization",
"client",
"consent_required",
"scope_results",
"status_code"
]
}