Pigeon // E-Sign
  1. Templates
Pigeon // E-Sign
  • Introduction
  • Authentication
  • Integrations
  • Documents
    • List Documents
      GET
    • Create Document
      POST
    • Get Document Status
      GET
    • Delete Document
      DELETE
    • Update Document
      PATCH
    • Update Document Status
      PATCH
    • Move Document to Draft
      POST
    • Get Document Details
      GET
    • Send Document
      POST
    • Create Document Session
      POST
    • Download Document
      GET
    • Download Protected Document
      GET
    • Update Document Ownership
      PATCH
    • Transfer Documents Ownership
      PATCH
  • Document Attachments
    • Document Attachment List
      GET
    • Document Attachment Create
      POST
    • Document Attachment Details
      GET
    • Document Attachment Delete
      DELETE
    • Document Attachment Download
      GET
  • Document Generation
    • List Document Fields
      GET
    • Create Document Fields
      POST
  • Document Recipients
    • Add Document Recipient
    • Edit Document Recipient
    • Delete Document Recipient
    • Reassign Document Recipient
  • Bulk Send
    • Trigger Bulk Send
    • Create Bulk Send List
    • Get Bulk Send List
    • Get Bulk Send Lists
    • Update Bulk Send List
    • Delete Bulk Send List
  • Templates
    • List Templates
      GET
    • Create Template
      POST
    • Template Details
      GET
    • Delete Template
      DELETE
  • Cloud Storage
    • List Cloud Storage Providers
    • Connect Cloud Storage Providers
    • Disconnect Cloud Storage Provider
  • Webhooks
    • Get all webhook subscriptions
    • Create webhook subscription
    • Get webhook subscription by uuid
    • Update webhook subscription
    • Delete webhook subscription
  • Branding
    • Get Organization Branding
    • Update Organization Branding
  • Confirmation Page
    • Enable/Disable Signature Confirmation Page
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
    • Schemas
      • BulkSendList
      • BulkSendItem
      • OrganizationBranding
      • CloudStorageServices
      • CloudStorageProvider
      • DocumentGenerationFormField
      • OAuth2CreateAccessTokenRequest
      • OAuth2RefreshAccessTokenRequests
      • OAuth2AccessTokenResponse
      • DocumentListResponse
      • DocumentCreateByTemplateRequest
      • DocumentCreateByPdfRequest
      • DocumentCreateRequest
      • DocumentCreateResponse
      • DocumentStatusResponse
      • DocumentUpdateRequest
      • DocumentStatusChangeRequest
      • DocumentDetailsResponse
      • DocumentCreateLinkRequest
      • DocumentCreateLinkResponse
      • DocumentSendRequest
      • DocumentSendResponse
      • DocumentAttachmentRequest
      • DocumentAttachmentResponse
      • DocumentTransferOwnershipRequest
      • DocumentTransferAllOwnershipRequest
      • DocumentRecipientCreateRequest
      • DocumentRecipientEditRequest
      • DocumentRecipientResponse
      • TemplateListResponse
      • TemplateDetailsResponse
      • ContactDetailsResponse
      • ContactListResponse
      • ContactCreateRequest
      • ContactUpdateRequest
      • MemberDetailsResponse
      • MemberListResponse
      • DocumentStatusEnum
      • DocumentStatusRequestEnum
      • DocumentOrderingFieldsEnum
      • Field
      • CreateDocumentActor
      • Recipient
      • RecipientGroup
      • Recipient
      • RecipientGroup
      • BaseField
      • Checkbox
      • Collect File
      • Date
      • Dropdown
      • Initials
      • Radio Buttons
      • Signature
      • Stamp
      • Text
      • Recipient
      • Recipient Group
      • WebhookSubscriptionPayloadEnum
      • WebhookSubscriptionTriggerEnum
      • WebhookSubscriptionStatusEnum
      • WebhookSubscriptionCreateRequest
      • WebhookSubscriptionPatchRequest
      • WebhookSubscriptionItemResponse
      • WebhookSubscriptionSharedKeyResponse
      • WebhookSubscriptionListResponse
      • WebhookEventErrorEnum
      • WebhookEventHttpStatusCodeGroupEnum
      • WebhookEventTriggerEnum
      • WebhookEventItemResponse
      • WebhookEventDetailsResponse
      • WebhookEventPageResponse
      • UploadSectionByPdfRequest
      • UploadSectionByTemplateRequest
      • UploadSectionRequest
      • UploadSectionListResponse
      • UploadSectionResponse
      • UploadSectionStatusResponse
      • UploadSectionStatusEnum
      • SectionInfoResponse
      • RecipientVerificationSettings
      • RecipientRedirect
      • RecipientDeliveryMethods
      • CreateWorkspaceRequest
      • CreateWorkspaceResponse
      • CreateUserRequest
      • CreateUserResponse
      • AddMemberRequest
      • AddMemberResponse
      • ListUsersResponse
      • ListWorkspacesResponse
      • Recipient
      • Recipient Group
    • Response
      • 401
      • 403
      • 404
      • 409
      • 429
      • 400RequestError
      • 400ValidationError
  1. Templates

List Templates

GET
/templates
Retrieves a list of templates. You can filter results by a search query, tags, or fields.

Request

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/templates?q=Sample onboarding template&shared&deleted&count=10&page&id=e9LxBesSL73AeZMzeYdfvV&tag&fields'

Responses

🟢200OK
application/json
OK
Body

Examples
{
    "results": [
        {
            "id": "iMymdDd9XFD3HyxP5VD67Q",
            "name": "Blank",
            "date_created": "2021-06-17T15:51:13.226Z",
            "date_modified": "2021-06-17T15:51:13.326Z",
            "version": "2",
            "content_date_modified": "2021-06-17T15:51:13.426Z"
        }
    ]
}
🟠401Unauthorized
🟠429429
Modified at 2024-09-18 01:34:58
Previous
Delete Bulk Send List
Next
Create Template