Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
// Adds the "Authorization: Bearer {{token}}" header.
http.SetAuthToken("{{token}}")
resp := http.QuickRequest("DELETE","https://domain.com/exchange/api/v2/assets/{{organization_id}}/{{app_Id}}/icon")
if http.LastMethodSuccess() == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
return
}
fmt.Println(resp.StatusCode())
fmt.Println(resp.BodyStr())
resp.DisposeHttpResponse()
http.DisposeHttp()
Curl Command
curl -X DELETE
-H "Authorization: Bearer {{token}}"
https://domain.com/exchange/api/v2/assets/{{organization_id}}/{{app_Id}}/icon
Postman Collection Item JSON
{
"name": "Delete an Icon",
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/exchange/api/v2/assets/{{organization_id}}/{{app_Id}}/icon",
"host": [
"{{url}}"
],
"path": [
"exchange",
"api",
"v2",
"assets",
"{{organization_id}}",
"{{app_Id}}",
"icon"
]
}
},
"response": [
]
}