Get Supporting Document Templates

Returns a single supporting document template.

Request

HTTP Method: GET

URI Path: /v3/supporting_document_templates/

Note

For all returned data attributes, see Supporting Document Templates Object.

URI Query Parameters

Name

Type

Is Required?

Description

id

string

Yes

Unique ID identifier of the Template.

Examples

http

GET /v3/supporting_document_templates/c8e004b0-87ec-4987-b4fb-ee89db099f0e HTTP/1.1
        Host: api.didww.com
        Content-Type: application/vnd.api+json
        Accept: application/vnd.api+json
        Api-Key: [API token]

curl

curl -i -X GET https://nohost/v3/supporting_document_templates/c8e004b0-87ec-4987-b4fb-ee89db099f0e

response

HTTP/1.1 200 OK
Content-Type: application/vnd.api+json

        {
            "data": {
                "id": "206ccec2-1166-461f-9f58-3a56823db548",
                "type": "supporting_document_templates",
                "attributes": {
                    "name": "Generic LOI",
                    "permanent": false,
                    "url": "https://sandbox-api.didww.com/storage/public/w7f2irbo819la7vd7up7u67pkmkn"
                }
            },
            "meta": {
                "api_version": "2026-04-16"
            }
        }