List Care teams
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Responses
Request samples
- Curl
- C# Http Client
curl --location '<INTEGRATION_ENDPOINT_URL>/CareTeam' \ --header 'Content-Type: application/json' \ --header 'Innowell-SubscriptionKey: <ADD_API_KEY>' \ --header 'Innowell-EmrId: <ADD_INNOWELL_EMR_ID>' \ --header 'Innowell-TenantId: <ADD_INNOWELL_TENANT_ID>'
Response samples
- 200
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "lastUpdated": "string"
}, - "type": "string",
- "link": [
- {
- "relation": "string",
- "url": "string"
}
], - "entry": [
- {
- "fullUrl": "string",
- "resource": {
- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "status": "string",
- "name": "string",
- "subject": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": null,
- "code": null,
- "display": null
}
]
}
], - "member": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}
}
]
}
}
]
}Create Care Team
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Request Body schema: application/json
| resourceType | string |
| status | string |
| name | string |
object (Subject) | |
object (Period) | |
Array of objects (CreateParticipant) |
Responses
Request samples
- Payload
- Curl
- C# Http Client
{- "resourceType": "string",
- "status": "string",
- "name": "string",
- "subject": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
]
}
], - "member": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z"
}
}
]
}Response samples
- 200
- 400
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "status": "string",
- "name": "string",
- "subject": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
]
}
], - "member": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}
}
]
}Get Care Team by Id
path Parameters
| care_team_id required | string Care Team Id |
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Responses
Request samples
- Curl
- C# Http Client
curl --location '<INTEGRATION_ENDPOINT_URL>/CareTeam/<care_team_id>' \ --header 'Content-Type: application/json' \ --header 'Innowell-SubscriptionKey: <ADD_API_KEY>' \ --header 'Innowell-EmrId: <ADD_INNOWELL_EMR_ID>' \ --header 'Innowell-TenantId: <ADD_INNOWELL_TENANT_ID>'
Response samples
- 200
- 404
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "status": "string",
- "name": "string",
- "subject": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
]
}
], - "member": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}
}
]
}Update Care Team
path Parameters
| care_team_id required | string Care Team Id |
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Request Body schema: application/json
| resourceType | string |
| id | string |
| status | string |
| name | string |
object (Subject) | |
object (Period) | |
Array of objects (UpdateParticipant) |
Responses
Request samples
- Payload
- Curl
- C# Http Client
{- "resourceType": "string",
- "id": "string",
- "status": "string",
- "name": "string",
- "subject": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
]
}
], - "member": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}
}
]
}Response samples
- 200
- 400
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "status": "string",
- "name": "string",
- "subject": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
]
}
], - "member": {
- "reference": "string",
- "display": "string"
}, - "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}
}
]
}List Observations
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Responses
Request samples
- Curl
- C# Http Client
curl --location '<INTEGRATION_ENDPOINT_URL>/Observation' \ --header 'Content-Type: application/json' \ --header 'Innowell-SubscriptionKey: <ADD_API_KEY>' \ --header 'Innowell-EmrId: <ADD_INNOWELL_EMR_ID>' \ --header 'Innowell-TenantId: <ADD_INNOWELL_TENANT_ID>'
Response samples
- 200
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "lastUpdated": "string"
}, - "type": "string",
- "link": [
- {
- "relation": "string",
- "url": "string"
}
], - "entry": [
- {
- "fullUrl": "string",
- "resource": {
- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "status": "string",
- "category": [
- {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
], - "text": "string"
}
], - "code": {
- "text": "string"
}, - "subject": {
- "reference": "string",
- "display": "string"
}, - "effectiveDateTime": "2019-08-24T14:15:22Z",
- "performer": [
- {
- "reference": "string",
- "display": "string"
}
]
}
}
]
}Get Observation By Id
path Parameters
| observation_id required | string Observation Id |
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Responses
Request samples
- Curl
- C# Http Client
curl --location '<INTEGRATION_ENDPOINT_URL>/Observation/<observation_id>' \ --header 'Content-Type: application/json' \ --header 'Innowell-SubscriptionKey: <ADD_API_KEY>' \ --header 'Innowell-EmrId: <ADD_INNOWELL_EMR_ID>' \ --header 'Innowell-TenantId: <ADD_INNOWELL_TENANT_ID>'
Response samples
- 200
- 404
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "status": "string",
- "category": [
- {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
], - "text": "string"
}
], - "code": {
- "text": "string"
}, - "subject": {
- "reference": "string",
- "display": "string"
}, - "effectiveDateTime": "2019-08-24T14:15:22Z",
- "performer": [
- {
- "reference": "string",
- "display": "string"
}
]
}List Patients
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Responses
Request samples
- Curl
- C# Http Client
curl --location '<INTEGRATION_ENDPOINT_URL>/Patient' \ --header 'Content-Type: application/json' \ --header 'Innowell-SubscriptionKey: <ADD_API_KEY>' \ --header 'Innowell-EmrId: <ADD_INNOWELL_EMR_ID>' \ --header 'Innowell-TenantId: <ADD_INNOWELL_TENANT_ID>'
Response samples
- 200
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "lastUpdated": "string"
}, - "type": "string",
- "link": [
- {
- "relation": "string",
- "url": "string"
}
], - "entry": [
- {
- "fullUrl": "string",
- "resource": {
- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "birthDate": "string",
- "address": [
- {
- "use": "string",
- "type": "string",
- "text": "string",
- "line": [
- "string"
], - "city": "string",
- "state": "string",
- "postalCode": "string",
- "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "country": "string"
}
], - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "managingOrganization": {
- "identifier": {
- "system": "string",
- "value": "string"
}
}
}
}
]
}Create Patient
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Request Body schema: application/json
| resourceType | string |
Array of objects (Identifier) | |
| active | boolean |
Array of objects (HumanName) | |
Array of objects (ContactPoint) | |
| birthDate | string |
Array of objects (Address) | |
Array of objects (Extension) | |
object (ManagingOrganization) |
Responses
Request samples
- Payload
- Curl
- C# Http Client
{- "resourceType": "string",
- "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "birthDate": "string",
- "address": [
- {
- "use": "string",
- "type": "string",
- "text": "string",
- "line": [
- "string"
], - "city": "string",
- "state": "string",
- "postalCode": "string",
- "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "country": "string"
}
], - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "managingOrganization": {
- "identifier": {
- "system": "string",
- "value": "string"
}
}
}Response samples
- 200
- 400
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "birthDate": "string",
- "address": [
- {
- "use": "string",
- "type": "string",
- "text": "string",
- "line": [
- "string"
], - "city": "string",
- "state": "string",
- "postalCode": "string",
- "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "country": "string"
}
], - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "managingOrganization": {
- "identifier": {
- "system": "string",
- "value": "string"
}
}
}Get Patient By Id
path Parameters
| patient_id required | string Patient Id |
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Responses
Request samples
- Curl
- C# Http Client
curl --location '<INTEGRATION_ENDPOINT_URL>/Patient/{patient_id}' \ --header 'Content-Type: application/json' \ --header 'Innowell-SubscriptionKey: <ADD_API_KEY>' \ --header 'Innowell-EmrId: <ADD_INNOWELL_EMR_ID>' \ --header 'Innowell-TenantId: <ADD_INNOWELL_TENANT_ID>'
Response samples
- 200
- 404
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "birthDate": "string",
- "address": [
- {
- "use": "string",
- "type": "string",
- "text": "string",
- "line": [
- "string"
], - "city": "string",
- "state": "string",
- "postalCode": "string",
- "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "country": "string"
}
], - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "managingOrganization": {
- "identifier": {
- "system": "string",
- "value": "string"
}
}
}Update Patient
path Parameters
| patient_id required | string Patient Id |
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Request Body schema: application/json
| resourceType | string |
| id | string |
Array of objects (Identifier) | |
| active | boolean |
Array of objects (HumanName) | |
Array of objects (ContactPoint) | |
| birthDate | string |
Array of objects (Address) | |
Array of objects (Extension) | |
object (ManagingOrganization) |
Responses
Request samples
- Payload
- Curl
- C# Http Client
{- "resourceType": "string",
- "id": "string",
- "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "birthDate": "string",
- "address": [
- {
- "use": "string",
- "type": "string",
- "text": "string",
- "line": [
- "string"
], - "city": "string",
- "state": "string",
- "postalCode": "string",
- "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "country": "string"
}
], - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "managingOrganization": {
- "identifier": {
- "system": "string",
- "value": "string"
}
}
}Response samples
- 200
- 400
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "birthDate": "string",
- "address": [
- {
- "use": "string",
- "type": "string",
- "text": "string",
- "line": [
- "string"
], - "city": "string",
- "state": "string",
- "postalCode": "string",
- "period": {
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z"
}, - "country": "string"
}
], - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "managingOrganization": {
- "identifier": {
- "system": "string",
- "value": "string"
}
}
}List Practitioners
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Responses
Request samples
- Curl
- C# Http Client
curl --location '<INTEGRATION_ENDPOINT_URL>/Practitioner' \ --header 'Content-Type: application/json' \ --header 'Innowell-SubscriptionKey: <ADD_API_KEY>' \ --header 'Innowell-EmrId: <ADD_INNOWELL_EMR_ID>' \ --header 'Innowell-TenantId: <ADD_INNOWELL_TENANT_ID>'
Response samples
- 200
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "lastUpdated": "string"
}, - "type": "string",
- "link": [
- {
- "relation": "string",
- "url": "string"
}
], - "entry": [
- {
- "fullUrl": "string",
- "resource": {
- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "qualification": [
- {
- "language": {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
], - "text": "string"
}, - "preferred": true
}
]
}
}
]
}Create Practitioner
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Request Body schema: application/json
| resourceType | string |
Array of objects (Extension) | |
Array of objects (Identifier) | |
| active | boolean |
Array of objects (HumanName) | |
Array of objects (ContactPoint) | |
Array of objects (QualificationBackboneElement) |
Responses
Request samples
- Payload
- Curl
- C# Http Client
{- "resourceType": "string",
- "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "qualification": [
- {
- "language": {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
], - "text": "string"
}, - "preferred": true
}
]
}Response samples
- 200
- 400
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "qualification": [
- {
- "language": {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
], - "text": "string"
}, - "preferred": true
}
]
}Get Practitioner By Id
path Parameters
| practitioner_id required | string Practitioner Id |
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Responses
Request samples
- Curl
- C# Http Client
curl --location '<INTEGRATION_ENDPOINT_URL>/Practitioner/<practitioner_id>' \ --header 'Content-Type: application/json' \ --header 'Innowell-SubscriptionKey: <ADD_API_KEY>' \ --header 'Innowell-EmrId: <ADD_INNOWELL_EMR_ID>' \ --header 'Innowell-TenantId: <ADD_INNOWELL_TENANT_ID>'
Response samples
- 200
- 404
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "qualification": [
- {
- "language": {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
], - "text": "string"
}, - "preferred": true
}
]
}Update Practitioner
path Parameters
| practitioner_id required | string Practitioner Id |
header Parameters
| Innowell-SubscriptionKey required | string Your unique Innowell API key. The API key is required. |
| Innowell-EmrId required | string EMR/PMS Id that is provided by Innowell. The EMR Id is required. |
| Innowell-TenantId required | string Tenant Id provided by Innowell uniquely identifies the Innowell tenant this request is targeting. The Tenant Id is required. |
Request Body schema: application/json
| resourceType | string |
| id | string |
Array of objects (Extension) | |
Array of objects (Identifier) | |
| active | boolean |
Array of objects (HumanName) | |
Array of objects (ContactPoint) | |
Array of objects (QualificationBackboneElement) |
Responses
Request samples
- Payload
- Curl
- C# Http Client
{- "resourceType": "string",
- "id": "string",
- "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "qualification": [
- {
- "language": {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
], - "text": "string"
}, - "preferred": true
}
]
}Response samples
- 200
- 400
{- "resourceType": "string",
- "id": "string",
- "meta": {
- "versionId": "string",
- "lastUpdated": "string",
- "source": "string"
}, - "extension": [
- {
- "url": "string",
- "valueString": "string"
}
], - "identifier": [
- {
- "system": "string",
- "value": "string"
}
], - "active": true,
- "name": [
- {
- "use": "string",
- "family": "string",
- "given": [
- "string"
]
}
], - "telecom": [
- {
- "system": "string",
- "value": "string",
- "use": "string"
}
], - "qualification": [
- {
- "language": {
- "coding": [
- {
- "system": "string",
- "code": "string",
- "display": "string"
}
], - "text": "string"
}, - "preferred": true
}
]
}