curl --request PATCH \
--url https://revive-api-v2-production.herokuapp.com/v1/onsite-visit/{onSiteVisitId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"audioFile": "<unknown>",
"attendees": "<array>",
"sessionStatus": "PENDING"
}
'curl --request PATCH \
--url https://revive-api-v2-production.herokuapp.com/v1/onsite-visit/{onSiteVisitId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"audioFile": "<unknown>",
"attendees": "<array>",
"sessionStatus": "PENDING"
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Success
Was this page helpful?