PATCH
/
v2
/
organizations
/
{orgId}
/
routing-forms
/
{routingFormId}
/
responses
/
{responseId}
curl --request PATCH \
  --url https://api.cal.com/v2/organizations/{orgId}/routing-forms/{routingFormId}/responses/{responseId} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "response": {}
}'
{
  "status": "success",
  "data": {
    "id": "<string>",
    "formId": "<string>",
    "formFillerId": "<string>",
    "routedToBookingUid": "<string>",
    "response": {
      "f00b26df-f54b-4985-8d98-17c5482c6a24": {
        "label": "participant",
        "value": "mamut"
      }
    },
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Headers

Authorization
string
required

value must be Bearer <token> where <token> is api key prefixed with cal_

Path Parameters

orgId
number
required
routingFormId
string
required
responseId
number
required

Body

application/json
response
object

The updated response data

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object
required