curl --request POST \
--url https://api.traceloop.com/v2/organizations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"org_name": "<string>",
"envs": [
"<string>"
]
}
'{
"environments": [
{
"api_key": "<string>",
"slug": "<string>"
}
],
"org_id": "<string>"
}Create a new organization with environments and API keys.
curl --request POST \
--url https://api.traceloop.com/v2/organizations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"org_name": "<string>",
"envs": [
"<string>"
]
}
'{
"environments": [
{
"api_key": "<string>",
"slug": "<string>"
}
],
"org_id": "<string>"
}Was this page helpful?