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.
// {
// "lockedByApp": "sample string 1",
// "lockDurationInSeconds": "sample string 2",
// "lockType": "sample string 3",
// "useScratchPad": "sample string 4",
// "templatePassword": "sample string 5"
// }
let json = CkoJsonObject()!
json.update("lockedByApp", value: "sample string 1")
json.update("lockDurationInSeconds", value: "sample string 2")
json.update("lockType", value: "sample string 3")
json.update("useScratchPad", value: "sample string 4")
json.update("templatePassword", value: "sample string 5")
// 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}}/templates/{{templateId}}/lock", 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 '{
"lockedByApp": "sample string 1",
"lockDurationInSeconds": "sample string 2",
"lockType": "sample string 3",
"useScratchPad": "sample string 4",
"templatePassword": "sample string 5"
}'
https://domain.com/v2.1/accounts/{{accountId}}/templates/{{templateId}}/lock
Postman Collection Item JSON
{
"name": "Deletes a template lock.",
"request": {
"method": "DELETE",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"lockedByApp\": \"sample string 1\",\n \"lockDurationInSeconds\": \"sample string 2\",\n \"lockType\": \"sample string 3\",\n \"useScratchPad\": \"sample string 4\",\n \"templatePassword\": \"sample string 5\"\n}"
},
"url": {
"raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/templates/{{templateId}}/lock",
"host": [
"{{baseUrl}}"
],
"path": [
"v2.1",
"accounts",
"{{accountId}}",
"templates",
"{{templateId}}",
"lock"
],
"variable": [
{
"key": "accountId",
"value": "{{accountId}}",
"type": "string"
},
{
"key": "templateId",
"value": "{{templateId}}",
"type": "string"
}
]
},
"description": "Deletes the lock from the specified template. The `X-DocuSign-Edit` header must be included in the request."
},
"response": [
]
}