Team Custom Credentials
Team Data Pull Preferences
Team Webhooks
Team Scope Requirements
Management Keys
Create Management Key
POST
/
v1
/
org
/
{org_id}
/
management_key
Copy
Ask AI
curl --request POST \
--url https://api.tryvital.io/management/v1/org/{org_id}/management_key \
--header 'Content-Type: application/json' \
--header 'X-Vital-Org-Key: <api-key>' \
--data '{
"label": "<string>",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
Copy
Ask AI
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"label": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"creator": {
"type": "org_member",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"email": "<string>",
"avatar": "<string>"
},
"role": "org_admin",
"team_role_bindings": [
{
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"key": "<string>"
}
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.
Copy
Ask AI
curl --request POST \
--url https://api.tryvital.io/management/v1/org/{org_id}/management_key \
--header 'Content-Type: application/json' \
--header 'X-Vital-Org-Key: <api-key>' \
--data '{
"label": "<string>",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
Authorizations
Path Parameters
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.tryvital.io/management/v1/org/{org_id}/management_key \
--header 'Content-Type: application/json' \
--header 'X-Vital-Org-Key: <api-key>' \
--data '{
"label": "<string>",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
Copy
Ask AI
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"label": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"creator": {
"type": "org_member",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"email": "<string>",
"avatar": "<string>"
},
"role": "org_admin",
"team_role_bindings": [
{
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"key": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.