API Referenceapipatient-graphDELETE /v1/patients/{patient_id}/providers/{provider_id}

DELETE /v1/patients/\{patient_id\}/providers/\{provider_id\}

Service: patient-graph · operationId: (none)

Required scopes

(no scope declared — review service config)

Path parameters

  • patient_id (string) required
  • provider_id (string) required

Responses

204 Provider unlinked

404 Patient or provider not found

{
  "type": "object",
  "properties": {
    "error": {
      "type": "string"
    },
    "message": {
      "type": "string"
    }
  },
  "required": [
    "error",
    "message"
  ]
}

Example

curl -X DELETE https://patient-graph.platform.loop.health/v1/patients/{patient_id}/providers/{provider_id} \
  -H "Authorization: Bearer $ACCESS_TOKEN"