SignSecureSignSecure Docs
Form fields

List Form Fields

List all form fields for a document.

GET
/documents/{documentId}/fields

List all form fields for a document.

Authorization

bearerAuth
AuthorizationBearer <token>

API key as Bearer token. Format: signsecure_xxxxxxxx...

In: header

Path Parameters

documentId*string

The document ID

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.signsecure.com/api/v1/documents/string/fields"
{
  "items": [
    {
      "id": "string",
      "type": "text",
      "fieldKey": "string",
      "pageNumber": 0,
      "x": 0,
      "y": 0,
      "width": 0,
      "height": 0,
      "label": "string",
      "required": true,
      "readOnly": true,
      "recipientId": "string",
      "defaultValue": null,
      "placeholder": "string",
      "options": [
        "string"
      ],
      "validation": {},
      "multiline": true,
      "showLabel": true,
      "radioGroup": {}
    }
  ],
  "total": 0
}
{
  "code": "UNAUTHORIZED",
  "message": "Invalid or missing API key",
  "requestId": "req_abc123",
  "timestamp": "2026-03-11T10:30:00.000Z"
}

{
  "code": "FORBIDDEN",
  "message": "API key is disabled",
  "requestId": "req_abc123",
  "timestamp": "2026-03-11T10:30:00.000Z"
}

{
  "code": "NOT_FOUND",
  "message": "Document not found",
  "requestId": "req_abc123",
  "timestamp": "2026-03-11T10:30:00.000Z"
}
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "An internal error occurred",
  "requestId": "req_abc123",
  "timestamp": "2026-03-11T10:30:00.000Z"
}