Swift3 / Anypoint Platform APIs / Remove custom field [enum] from asset
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Adds the "Authorization: Bearer {{token}}" header.
http.authToken = "{{token}}"
var resp: CkoHttpResponse? = http.quickRequest("DELETE", url: "https://domain.com/exchange/api/v1/organizations/{{organization_id}}/assets/{{organization_id}}/{{app_Id}}/1.0.1/tags/fields/subType")
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -X DELETE
-H "Authorization: Bearer {{token}}"
https://domain.com/exchange/api/v1/organizations/{{organization_id}}/assets/{{organization_id}}/{{app_Id}}/1.0.1/tags/fields/subType
Postman Collection Item JSON
{
"name": "Remove custom field [enum] from asset",
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/exchange/api/v1/organizations/{{organization_id}}/assets/{{organization_id}}/{{app_Id}}/1.0.1/tags/fields/subType",
"host": [
"{{url}}"
],
"path": [
"exchange",
"api",
"v1",
"organizations",
"{{organization_id}}",
"assets",
"{{organization_id}}",
"{{app_Id}}",
"1.0.1",
"tags",
"fields",
"subType"
]
}
},
"response": [
]
}