Team Custom Credentials
Team Data Pull Preferences
Team Scope Requirements
Team
Get Team
GET
/
v1
/
org
/
{org_id}
/
team
/
{team_id}
curl --request GET \
--url https://api.tryvital.io/management/v1/org/{org_id}/team/{team_id} \
--header 'X-Vital-Org-Key: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_on": "2023-11-07T05:31:56Z",
"region": "us",
"environments": [
"production"
],
"sandbox": {
"lab_tests_patient_sms_communication_enabled": true,
"lab_tests_patient_email_communication_enabled": true,
"brand_information": {
"company_name": "<string>",
"company_website": "<string>",
"support_email": "jsmith@example.com",
"support_contact": "<string>",
"company_address": "<string>",
"brand_color": "<string>"
},
"logo_url": "<string>",
"reject_duplicate_connection": false,
"sdk_per_device_activity_timeseries": false
},
"production": {
"lab_tests_patient_sms_communication_enabled": true,
"lab_tests_patient_email_communication_enabled": true,
"brand_information": {
"company_name": "<string>",
"company_website": "<string>",
"support_email": "jsmith@example.com",
"support_contact": "<string>",
"company_address": "<string>",
"brand_color": "<string>"
},
"logo_url": "<string>",
"reject_duplicate_connection": true,
"sdk_per_device_activity_timeseries": true
}
}
Junction Management API is available for the Scale plan.
The base URL of this endpoint is https://api.tryvital.io/management/
.
The endpoint accepts only Management Key (X-Management-Key
).
Team API Key is not accepted.
curl --request GET \
--url https://api.tryvital.io/management/v1/org/{org_id}/team/{team_id} \
--header 'X-Vital-Org-Key: <api-key>'
Authorizations
Query Parameters
Available options:
production
, sandbox
Response
200
application/json
Successful Response
The response is of type object
.
curl --request GET \
--url https://api.tryvital.io/management/v1/org/{org_id}/team/{team_id} \
--header 'X-Vital-Org-Key: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_on": "2023-11-07T05:31:56Z",
"region": "us",
"environments": [
"production"
],
"sandbox": {
"lab_tests_patient_sms_communication_enabled": true,
"lab_tests_patient_email_communication_enabled": true,
"brand_information": {
"company_name": "<string>",
"company_website": "<string>",
"support_email": "jsmith@example.com",
"support_contact": "<string>",
"company_address": "<string>",
"brand_color": "<string>"
},
"logo_url": "<string>",
"reject_duplicate_connection": false,
"sdk_per_device_activity_timeseries": false
},
"production": {
"lab_tests_patient_sms_communication_enabled": true,
"lab_tests_patient_email_communication_enabled": true,
"brand_information": {
"company_name": "<string>",
"company_website": "<string>",
"support_email": "jsmith@example.com",
"support_contact": "<string>",
"company_address": "<string>",
"brand_color": "<string>"
},
"logo_url": "<string>",
"reject_duplicate_connection": true,
"sdk_per_device_activity_timeseries": true
}
}