5. Cancellation

Cancel an appointment

POST /{clinicId}/{bookingId}/cancel

Cancels a booking using patientId, bookingId, and clinicId.

Parameters

  • clinicId: Clinic ID (required)

  • bookingId: Booking ID (required)

  • apikey: API Key (required)

  • note: Note for the cancellation (optional)

Returns

Json-response containing the cancellation response or an error message.

Example

Request:

POST https://psno-portal.svc.pasientsky.no/partner-api/92fef17c-cd48-11ed-bc1f-fa4d0633c42f/2bcb01a4-d9ea-11ed-a18c-0691d69080cc/cancel

{

"apikey": "hello"

}

Response:

{

"data":{

"cancelled":true

}

}

Last updated