Create Template Term

POST /templates/{template_ref}/terms

Creates a canonical term under the identified template, optionally nested under a section.


Conventions

Authentication

All endpoints require a Bearer token. Pass it in the Authorization header as Bearer <token>. Tokens are issued from the API settings page in your workspace.

Base URL

All paths are relative to https://api.allsign.app. The spec includes full paths; strip the base when constructing requests.

Versioning

The current version is 0.1.0. Breaking changes are documented in the Changelog and announced before taking effect.

Specification

The API follows OpenAPI Specification 3.x. All documentation on this page is generated directly from the spec.


Example

Bash
curl "https://api.allsign.app/templates/{template_ref}/terms" \
-X POST \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
--data-raw '{
"name": ""
}'

Request

Request Path
template_ref

Public template reference.

stringrequired
Request Body
{
  "description": "",
  "name": "",
  "negotiable": 0,
  "position": "",
  "priority": "low",
  "section": {}
}
description

stringnulloptional
name

stringrequired
negotiable

0 | 1 | nulloptional
position

integernulloptional
priority

low | medium | high | urgentoptional
section

objectoptional

Responses

201 Created

Term created.

{
  "data": {
    "term": {
      "description": "",
      "has_review_history": true,
      "locked": true,
      "name": "",
      "negotiable": true,
      "pending_counter_proposal": true,
      "position": "",
      "priority": "",
      "ref": "00000000-0000-4000-8000-000000000000"
    }
  }
}
data

objectrequired
data.term

Canonical term resource.

objectrequired
data.term.description

stringnullrequired
data.term.has_review_history

booleanrequired
data.term.locked

booleanrequired
data.term.name

stringrequired
data.term.negotiable

booleanrequired
data.term.pending_counter_proposal

booleanrequired
data.term.position

integernullrequired
data.term.priority

stringrequired
data.term.ref

Public stable resource reference.

string (uuid)required
400 Bad Request

{
  "error": {
    "code": "",
    "message": "",
    "request_id": "",
    "status": 1
  }
}
error

objectrequired
error.code

stringrequired
error.message

stringrequired
error.request_id

stringrequired
error.status

integerrequired
error.fields

object[]optional
401 Unauthorized

{
  "error": {
    "code": "",
    "message": "",
    "request_id": "",
    "status": 1
  }
}
error

objectrequired
error.code

stringrequired
error.message

stringrequired
error.request_id

stringrequired
error.status

integerrequired
error.fields

object[]optional
404 Not Found

{
  "error": {
    "code": "",
    "message": "",
    "request_id": "",
    "status": 1
  }
}
error

objectrequired
error.code

stringrequired
error.message

stringrequired
error.request_id

stringrequired
error.status

integerrequired
error.fields

object[]optional
422 Unprocessable Entity

{
  "error": {
    "code": "",
    "message": "",
    "request_id": "",
    "status": 1
  }
}
error

objectrequired
error.code

stringrequired
error.message

stringrequired
error.request_id

stringrequired
error.status

integerrequired
error.fields

object[]optional

© 2026 AllSign. All rights reserved.