Chilkat Online Tools

Swift3 / DocuSign REST API / Creates one or more brand profile files for the account.

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.

    // {
    //   "brandCompany": "sample string 1",
    //   "brandId": "sample string 2",
    //   "brandName": "sample string 3",
    //   "colors": [
    //     {}
    //   ],
    //   "isOverridingCompanyName": "sample string 4",
    //   "isSendingDefault": "sample string 5",
    //   "isSigningDefault": "sample string 6",
    //   "landingPages": [
    //     {}
    //   ],
    //   "links": [
    //     {
    //       "linkType": "sample string 1",
    //       "urlOrMailTo": "sample string 2",
    //       "linkText": "sample string 3",
    //       "showLink": "sample string 4"
    //     }
    //   ],
    //   "emailContent": [
    //     {
    //       "emailContentType": "sample string 1",
    //       "content": "sample string 2",
    //       "emailToLink": "sample string 3",
    //       "linkText": "sample string 4"
    //     }
    //   ],
    //   "logos": {
    //     "primary": "sample string 1",
    //     "secondary": "sample string 2",
    //     "email": "sample string 3"
    //   },
    //   "resources": {
    //     "email": "sample string 1",
    //     "sending": "sample string 2",
    //     "signing": "sample string 3",
    //     "signingCaptive": "sample string 4"
    //   }
    // }

    let json = CkoJsonObject()!
    json.update("brandCompany", value: "sample string 1")
    json.update("brandId", value: "sample string 2")
    json.update("brandName", value: "sample string 3")
    json.update("isOverridingCompanyName", value: "sample string 4")
    json.update("isSendingDefault", value: "sample string 5")
    json.update("isSigningDefault", value: "sample string 6")
    json.update("links[0].linkType", value: "sample string 1")
    json.update("links[0].urlOrMailTo", value: "sample string 2")
    json.update("links[0].linkText", value: "sample string 3")
    json.update("links[0].showLink", value: "sample string 4")
    json.update("emailContent[0].emailContentType", value: "sample string 1")
    json.update("emailContent[0].content", value: "sample string 2")
    json.update("emailContent[0].emailToLink", value: "sample string 3")
    json.update("emailContent[0].linkText", value: "sample string 4")
    json.update("logos.primary", value: "sample string 1")
    json.update("logos.secondary", value: "sample string 2")
    json.update("logos.email", value: "sample string 3")
    json.update("resources.email", value: "sample string 1")
    json.update("resources.sending", value: "sample string 2")
    json.update("resources.signing", value: "sample string 3")
    json.update("resources.signingCaptive", value: "sample string 4")

    // Adds the "Authorization: Bearer {{accessToken}}" header.
    http.authToken = "{{accessToken}}"
    http.setRequestHeader("Accept", value: "application/json")

    var resp: CkoHttpResponse? = http.postJson3("https://domain.com/v2.1/accounts/{{accountId}}/brands", contentType: "application/json", json: json)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

Curl Command

curl -X POST
	-H "Accept: application/json"
	-H "Authorization: Bearer {{accessToken}}"
	-d '{
  "brandCompany": "sample string 1",
  "brandId": "sample string 2",
  "brandName": "sample string 3",
  "colors": [
    {}
  ],
  "isOverridingCompanyName": "sample string 4",
  "isSendingDefault": "sample string 5",
  "isSigningDefault": "sample string 6",
  "landingPages": [
    {}
  ],
  "links": [
    {
      "linkType": "sample string 1",
      "urlOrMailTo": "sample string 2",
      "linkText": "sample string 3",
      "showLink": "sample string 4"
    }
  ],
  "emailContent": [
    {
      "emailContentType": "sample string 1",
      "content": "sample string 2",
      "emailToLink": "sample string 3",
      "linkText": "sample string 4"
    }
  ],
  "logos": {
    "primary": "sample string 1",
    "secondary": "sample string 2",
    "email": "sample string 3"
  },
  "resources": {
    "email": "sample string 1",
    "sending": "sample string 2",
    "signing": "sample string 3",
    "signingCaptive": "sample string 4"
  }
}'
https://domain.com/v2.1/accounts/{{accountId}}/brands

Postman Collection Item JSON

{
  "name": "Creates one or more brand profile files for the account.",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{accessToken}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"brandCompany\": \"sample string 1\",\n  \"brandId\": \"sample string 2\",\n  \"brandName\": \"sample string 3\",\n  \"colors\": [\n    {}\n  ],\n  \"isOverridingCompanyName\": \"sample string 4\",\n  \"isSendingDefault\": \"sample string 5\",\n  \"isSigningDefault\": \"sample string 6\",\n  \"landingPages\": [\n    {}\n  ],\n  \"links\": [\n    {\n      \"linkType\": \"sample string 1\",\n      \"urlOrMailTo\": \"sample string 2\",\n      \"linkText\": \"sample string 3\",\n      \"showLink\": \"sample string 4\"\n    }\n  ],\n  \"emailContent\": [\n    {\n      \"emailContentType\": \"sample string 1\",\n      \"content\": \"sample string 2\",\n      \"emailToLink\": \"sample string 3\",\n      \"linkText\": \"sample string 4\"\n    }\n  ],\n  \"logos\": {\n    \"primary\": \"sample string 1\",\n    \"secondary\": \"sample string 2\",\n    \"email\": \"sample string 3\"\n  },\n  \"resources\": {\n    \"email\": \"sample string 1\",\n    \"sending\": \"sample string 2\",\n    \"signing\": \"sample string 3\",\n    \"signingCaptive\": \"sample string 4\"\n  }\n}"
    },
    "url": {
      "raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/brands",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "v2.1",
        "accounts",
        "{{accountId}}",
        "brands"
      ],
      "variable": [
        {
          "key": "accountId",
          "value": "{{accountId}}"
        }
      ]
    },
    "description": "Creates one or more brand profile files for the account. The Account Branding feature (accountSettings properties `canSelfBrandSend` and `canSelfBrandSig`) must be set to **true** for the account to use this call.\n\nAn error is returned if `brandId` property for a brand profile is already set for the account. To upload a new version of an existing brand profile, you must delete the profile and then upload the newer version.\n\nWhen brand profile files are being uploaded, they must be combined into one zip file and the `Content-Type` must be `application/zip`."
  },
  "response": [
  ]
}