/appointment/{appointment_id}

GET appointment (with the specified identifier)

Path Parameters
  • appointment_id
    Type: string
    required
Responses
  • application/json
  • application/json
Request Example for get/appointment/{appointment_id}
curl 'https://api.bedrijvencheck.nl/24/appointment/{appointment_id}' \
  --header 'Authorization: Basic username:password'
{
  "appointments": [
    {
      "appointment_id": "string",
      "registration_id": "string",
      "status": "string",
      "type": "string",
      "keysafe_id": "string",
      "location_id": "string",
      "location_name": "string",
      "external_id": "string",
      "start_date": "string",
      "end_date": "string"
    }
  ]
}