Creates a new environment from provided data
curl --request POST \
--url https://api.rootly.com/v1/environments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "environments",
"attributes": {
"name": "<string>",
"description": "<string>",
"color": "<string>",
"position": 123,
"notify_emails": [
"<string>"
],
"slack_channels": [
{
"id": "<string>",
"name": "<string>"
}
],
"slack_aliases": [
{
"id": "<string>",
"name": "<string>"
}
]
}
}
}
'{
"data": {
"id": "d2ea078f-d301-43d0-8369-2c64fdac9217",
"type": "environments",
"attributes": {
"slug": "us-east-1",
"name": "us-east-1",
"description": "East Coast Datacenter",
"color": "#FFF",
"position": 1,
"notify_emails": [
"[email protected]",
"[email protected]"
],
"slack_channels": [
{
"id": "C03MKDSEJE8",
"name": "elastisearch"
}
],
"slack_aliases": [
{
"id": "S03F7QUV7F1",
"name": "leadership"
}
],
"created_at": "2025-12-21T12:07:27.475-08:00",
"updated_at": "2025-12-21T12:07:27.475-08:00"
}
}
}Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/environments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "environments",
"attributes": {
"name": "<string>",
"description": "<string>",
"color": "<string>",
"position": 123,
"notify_emails": [
"<string>"
],
"slack_channels": [
{
"id": "<string>",
"name": "<string>"
}
],
"slack_aliases": [
{
"id": "<string>",
"name": "<string>"
}
]
}
}
}
'{
"data": {
"id": "d2ea078f-d301-43d0-8369-2c64fdac9217",
"type": "environments",
"attributes": {
"slug": "us-east-1",
"name": "us-east-1",
"description": "East Coast Datacenter",
"color": "#FFF",
"position": 1,
"notify_emails": [
"[email protected]",
"[email protected]"
],
"slack_channels": [
{
"id": "C03MKDSEJE8",
"name": "elastisearch"
}
],
"slack_aliases": [
{
"id": "S03F7QUV7F1",
"name": "leadership"
}
],
"created_at": "2025-12-21T12:07:27.475-08:00",
"updated_at": "2025-12-21T12:07:27.475-08:00"
}
}
}