Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loJson
LOCAL loSbRequestBody
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
* 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"
* }
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJson = CreateObject('Chilkat.JsonObject')
loJson.UpdateString("id","sample string 1")
loJson.UpdateString("enabled","sample string 2")
loJson.UpdateString("font","sample string 3")
loJson.UpdateString("fontSize","sample string 4")
loJson.UpdateString("fontColor","sample string 5")
loJson.UpdateString("displayAngle","sample string 6")
loJson.UpdateString("transparency","sample string 7")
loJson.UpdateString("watermarkText","sample string 8")
loJson.UpdateString("imageBase64","sample string 9")
* Adds the "Authorization: Bearer {{accessToken}}" header.
loHttp.AuthToken = "{{accessToken}}"
loHttp.SetRequestHeader("Accept","application/json")
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder')
loSbRequestBody = CreateObject('Chilkat.StringBuilder')
loJson.EmitSb(loSbRequestBody)
loResp = loHttp.PTextSb("PUT","https://domain.com/v2.1/accounts/{{accountId}}/watermark/preview",loSbRequestBody,"utf-8","application/json",0,0)
IF (loHttp.LastMethodSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loJson
RELEASE loSbRequestBody
CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp
RELEASE loHttp
RELEASE loJson
RELEASE loSbRequestBody
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/preview
Postman Collection Item JSON
{
"name": "Get watermark preview.",
"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/preview",
"host": [
"{{baseUrl}}"
],
"path": [
"v2.1",
"accounts",
"{{accountId}}",
"watermark",
"preview"
],
"variable": [
{
"key": "accountId",
"value": "{{accountId}}"
}
]
}
},
"response": [
]
}