Swift3 / DocuSign eSignature REST API / Deletes brand information from the requested group.
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
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "brands": [
// {
// "brandId": "sample string 1"
// }
// ]
// }
let json = CkoJsonObject()!
json.update("brands[0].brandId", value: "sample string 1")
// Adds the "Authorization: Bearer {{accessToken}}" header.
http.authToken = "{{accessToken}}"
http.setRequestHeader("Accept", value: "application/json")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("DELETE", url: "https://domain.com/v2.1/accounts/{{accountId}}/groups/{{groupId}}/brands", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -X DELETE
-H "Accept: application/json"
-H "Authorization: Bearer {{accessToken}}"
-d '{
"brands": [
{
"brandId": "sample string 1"
}
]
}'
https://domain.com/v2.1/accounts/{{accountId}}/groups/{{groupId}}/brands
Postman Collection Item JSON
{
"name": "Deletes brand information from the requested group.",
"request": {
"method": "DELETE",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"brands\": [\n {\n \"brandId\": \"sample string 1\"\n }\n ]\n}"
},
"url": {
"raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/groups/{{groupId}}/brands",
"host": [
"{{baseUrl}}"
],
"path": [
"v2.1",
"accounts",
"{{accountId}}",
"groups",
"{{groupId}}",
"brands"
],
"variable": [
{
"key": "accountId",
"value": "{{accountId}}",
"type": "string"
},
{
"key": "groupId",
"value": "{{groupId}}",
"type": "string"
}
]
},
"description": "Deletes brand information from the requested group."
},
"response": [
]
}