---
updatedAt: 2026-04-24T16:32:05.000Z
---

Fetch the complete documentation index at: https://docs.usestable.com/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# Retrieve a location's signature packet

Retrieve a location's signature packet for onboarding. Contains a link to sign the form.

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "title": "Stable API",
    "version": "1"
  },
  "paths": {
    "/v1/locations/{id}/onboard/signature-packet": {
      "get": {
        "summary": "Retrieve a location's signature packet",
        "description": "Retrieve a location's signature packet for onboarding. Contains a link to sign the form.",
        "tags": [
          "Locations"
        ],
        "operationId": "getOnboardLocationSignaturePacket.get.v1/locations/{id}/onboard/signature-packet",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "header",
            "name": "x-api-key",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SignaturePacket"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BadRequestError"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Forbidden"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotFoundError"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/InternalError"
                }
              }
            }
          }
        },
        "security": [
          {
            "x-api-key": []
          }
        ]
      }
    }
  },
  "servers": [
    {
      "url": "https://api.usestable.com"
    }
  ],
  "components": {
    "securitySchemes": {
      "x-api-key": {
        "type": "apiKey",
        "name": "x-api-key",
        "in": "header"
      }
    },
    "schemas": {
      "BadRequestError": {
        "properties": {
          "message": {
            "title": "BadRequestError.message",
            "enum": [
              "Bad Request"
            ],
            "type": "string"
          }
        },
        "required": [
          "message"
        ],
        "additionalProperties": false,
        "title": "BadRequestError",
        "type": "object"
      },
      "NotFoundError": {
        "properties": {
          "message": {
            "title": "NotFoundError.message",
            "enum": [
              "Not Found"
            ],
            "type": "string"
          }
        },
        "required": [
          "message"
        ],
        "additionalProperties": false,
        "title": "NotFoundError",
        "type": "object"
      },
      "Forbidden": {
        "properties": {
          "message": {
            "title": "Forbidden.message",
            "enum": [
              "Forbidden"
            ],
            "type": "string"
          }
        },
        "required": [
          "message"
        ],
        "additionalProperties": false,
        "title": "Forbidden",
        "type": "object"
      },
      "InternalError": {
        "properties": {
          "message": {
            "title": "InternalError.message",
            "enum": [
              "Internal Error"
            ],
            "type": "string"
          }
        },
        "required": [
          "message"
        ],
        "additionalProperties": false,
        "title": "InternalError",
        "type": "object"
      },
      "SignaturePacket": {
        "properties": {
          "id": {
            "title": "SignaturePacket.id",
            "description": "The ID of the signature packet.",
            "type": "string"
          },
          "expiresAt": {
            "title": "SignaturePacket.expiresAt",
            "description": "The expiration date of the signature packet URL.",
            "type": "string"
          },
          "url": {
            "title": "SignaturePacket.url",
            "description": "The URL to sign the signature packet.",
            "type": "string"
          }
        },
        "required": [
          "id",
          "expiresAt",
          "url"
        ],
        "additionalProperties": false,
        "title": "SignaturePacket",
        "type": "object"
      }
    }
  }
}
```