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.
// {
// "id": "sample string 1",
// "enabled": "sample string 2",
// "font": "sample string 3",
// "fontSize": "sample string 4",
// "fontColor": "sample string 5",
// "displayAngle": "sample string 6",
// "transparency": "sample string 7",
// "watermarkText": "sample string 8",
// "imageBase64": "sample string 9"
// }
let json = CkoJsonObject()!
json.update("id", value: "sample string 1")
json.update("enabled", value: "sample string 2")
json.update("font", value: "sample string 3")
json.update("fontSize", value: "sample string 4")
json.update("fontColor", value: "sample string 5")
json.update("displayAngle", value: "sample string 6")
json.update("transparency", value: "sample string 7")
json.update("watermarkText", value: "sample string 8")
json.update("imageBase64", value: "sample string 9")
// 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("PUT", url: "https://domain.com/v2.1/accounts/{{accountId}}/watermark", 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 PUT
-H "Accept: application/json"
-H "Authorization: Bearer {{accessToken}}"
-d '{
"id": "sample string 1",
"enabled": "sample string 2",
"font": "sample string 3",
"fontSize": "sample string 4",
"fontColor": "sample string 5",
"displayAngle": "sample string 6",
"transparency": "sample string 7",
"watermarkText": "sample string 8",
"imageBase64": "sample string 9"
}'
https://domain.com/v2.1/accounts/{{accountId}}/watermark
Postman Collection Item JSON
{
"name": "Update watermark information.",
"request": {
"method": "PUT",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"id\": \"sample string 1\",\n \"enabled\": \"sample string 2\",\n \"font\": \"sample string 3\",\n \"fontSize\": \"sample string 4\",\n \"fontColor\": \"sample string 5\",\n \"displayAngle\": \"sample string 6\",\n \"transparency\": \"sample string 7\",\n \"watermarkText\": \"sample string 8\",\n \"imageBase64\": \"sample string 9\"\n}"
},
"url": {
"raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/watermark",
"host": [
"{{baseUrl}}"
],
"path": [
"v2.1",
"accounts",
"{{accountId}}",
"watermark"
],
"variable": [
{
"key": "accountId",
"value": "{{accountId}}",
"type": "string"
}
]
}
},
"response": [
]
}