Operation spec
{
"method": "post",
"path": "/settings/url",
"operationId": "generate-settings-url",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"description": "Input data required to generate a settings URL. The ID should be the one from your EHR system.",
"properties": {
"external_provider_id": {
"type": "string"
}
},
"required": [
"external_provider_id"
],
"title": "generate_settings_url_request"
}
}
}
},
"responses": {
"200": {
"description": "The settings URL.",
"content": {
"application/json": {
"schema": {
"type": "object",
"description": "The settings URL response.",
"properties": {
"settings_url": {
"type": "string",
"description": "URL to open the settings screen."
}
},
"title": "settings_url_response"
}
}
}
}
}
}