Create a region
Allows you to create a new region in the system. Available to Garmat and customer administrators.
Path parameters
-
account_id
string Required The ID of the account to assign the region to
Body
The parameters to create a region
-
account_id
string ID of the account to assign the region to
-
name
string Required name of the region to create
POST
/api/accounts/{account_id}/regions
curl \
--request POST 'http://localhost:4000/api/accounts/{account_id}/regions' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"name":"Test Region","account_id":"a9299bca-acc2-4dde-1111-83a08ca12128"}'
Request examples
{
"name": "Test Region",
"account_id": "a9299bca-acc2-4dde-1111-83a08ca12128"
}
Response examples (200)
{
"id": "f260f115-f2e6-4dde-bcab-98b10fdb8cf6",
"name": "Test Region",
"account_id": "a9299bca-acc2-4dde-1111-83a08ca12128"
}
Response examples (200)
{
"id": "f260f115-f2e6-4dde-bcab-98b10fdb8cf6",
"name": "Test Region",
"account_id": "a9299bca-acc2-4dde-1111-83a08ca12128"
}
Response examples (400)
{
"error": "Error Reason"
}
Response examples (400)
{
"error": "Error Reason"
}
Response examples (401)
{
"error": "Error Reason"
}
Response examples (401)
{
"error": "Error Reason"
}