Chilkat Online Tools

PHP (Extension) / DocuSign REST API / 12. Lists the Existing Locks on an Envelope

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

$http->put_AuthToken('{{accessToken}}');$success = $http->QuickGetSb('https://domain.com/{{apiVersion}}/accounts/{{accountId}}/envelopes/{{envelopeId}}/lock',$sbResponseBody);
?>

Curl Command

curl -X GET
	-H "Authorization: Bearer {{accessToken}}"
https://domain.com/{{apiVersion}}/accounts/{{accountId}}/envelopes/{{envelopeId}}/lock

Postman Collection Item JSON

{
  "name": "12. Lists the Existing Locks on an Envelope",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{accessToken}}"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/{{apiVersion}}/accounts/{{accountId}}/envelopes/{{envelopeId}}/lock",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "{{apiVersion}}",
        "accounts",
        "{{accountId}}",
        "envelopes",
        "{{envelopeId}}",
        "lock"
      ]
    },
    "description": "In this example, we will list all the locks existing on an envelope."
  },
  "response": [
  ]
}