Chilkat Online Tools

Unicode C++ / DocuSign eSignature REST API / Retrieves the list of favorited templates for this caller

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_AuthToken(L"{{accessToken}}");    success = http.QuickGetSb(L"https://domain.com/v2.1/accounts/{{accountId}}/favorite_templates",sbResponseBody);
    }

Curl Command

curl -X GET
	-H "Accept: application/json"
	-H "Authorization: Bearer {{accessToken}}"
https://domain.com/v2.1/accounts/{{accountId}}/favorite_templates

Postman Collection Item JSON

{
  "name": "Retrieves the list of favorited templates for this caller",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{accessToken}}"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/favorite_templates",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "v2.1",
        "accounts",
        "{{accountId}}",
        "favorite_templates"
      ],
      "variable": [
        {
          "key": "accountId",
          "value": "{{accountId}}",
          "type": "string"
        }
      ]
    }
  },
  "response": [
  ]
}