Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
// Adds the "Authorization: Bearer {{token}}" header.
loHttp.AuthToken = "{{token}}"
loResp = loHttp.QuickRequest("DELETE","https://domain.com/accounts/api/organizations/{{organization_id}}/environments/{{environment_id}}")
if (loHttp.LastMethodSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
return
endif
? str(loResp.StatusCode)
? loResp.BodyStr
release loResp
release loHttp
Curl Command
curl -X DELETE
-H "Authorization: Bearer {{token}}"
https://domain.com/accounts/api/organizations/{{organization_id}}/environments/{{environment_id}}
Postman Collection Item JSON
{
"name": "Delete an environment",
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/accounts/api/organizations/{{organization_id}}/environments/{{environment_id}}",
"host": [
"{{url}}"
],
"path": [
"accounts",
"api",
"organizations",
"{{organization_id}}",
"environments",
"{{environment_id}}"
]
}
},
"response": [
]
}