Back to Collection Items
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
Procedure ChilkatExample()
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success.i
; Adds the "Authorization: Bearer {{token}}" header.
CkHttp::setCkAuthToken(http, "{{token}}")
resp.i = CkHttp::ckQuickRequest(http,"DELETE","https://domain.com/accounts/api/organizations/{{organization_id}}/environments/{{environment_id}}")
If CkHttp::ckLastMethodSuccess(http) = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
ProcedureReturn
EndIf
Debug Str(CkHttpResponse::ckStatusCode(resp))
Debug CkHttpResponse::ckBodyStr(resp)
CkHttpResponse::ckDispose(resp)
CkHttp::ckDispose(http)
ProcedureReturn
EndProcedure
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": [
]
}