intake_submit
InactiveTool of ComOS Federation Gateway
Submit pre-appointment intake information against a booking. Opaque JSON; the platform does not validate schemas. Idempotent on `idempotency_key`. (Federated: requires tenant_id. For cart/orders, pass auth_token from POST /v1/auth/login. Product IDs are MongoDB ObjectIds from catalog_search.)
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"tenant_id",
"booking_id",
"intake",
"idempotency_key"
],
"properties": {
"intake": {
"type": "object",
"additionalProperties": {}
},
"tenant_id": {
"type": "string"
},
"auth_token": {
"type": "string",
"description": "JWT auth token for authenticated operations (cart, orders). Get from api_call POST /v1/auth/login."
},
"booking_id": {
"type": "string"
},
"idempotency_key": {
"type": "string"
}
},
"additionalProperties": false
}Parent server
ComOS Federation Gateway
https://github.com/ronrey/comos-federation
2/7 registries