Skip to main content
POST
/
v1
/
org
/
{org_id}
/
team_api_keys
/
{env}
/
{region}
curl --request POST \
  --url https://api.management.junction.com/v1/org/{org_id}/team_api_keys/{env}/{region} \
  --header 'Content-Type: application/json' \
  --header 'X-Vital-Org-Key: <api-key>' \
  --data '{
  "label": "<string>",
  "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "label": "<string>",
  "value": "<string>",
  "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z"
}
The base URL of this endpoint is https://api.management.junction.com/.The endpoint accepts only Management Key (X-Management-Key). Team API Key is not accepted.
curl --request POST \
  --url https://api.management.junction.com/v1/org/{org_id}/team_api_keys/{env}/{region} \
  --header 'Content-Type: application/json' \
  --header 'X-Vital-Org-Key: <api-key>' \
  --data '{
  "label": "<string>",
  "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'

Authorizations

X-Management-Key
string
header
required

Path Parameters

org_id
string<uuid>
required
env
enum<string>
required
Available options:
production,
sandbox
region
enum<string>
required
Available options:
us,
eu

Body

application/json
label
string
required
team_id
string<uuid>
required

Response

Successful Response

id
string<uuid>
required
label
string
required
value
string
required
team_id
string<uuid>
required
created_at
string<date-time>
required
I