Get Agreement Protocol

GET /agreements/{agreement_ref}/protocols

Returns the current signing state and the single valid next action for the identified agreement.


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/agreements/{agreement_ref}/protocols" \
-H "Authorization: Bearer {token}"

Request

Request Path
agreement_ref

Public agreement reference.

stringrequired

Responses

200 OK

Agreement signing protocol state.

{
  "data": {
    "state": "idle",
    "action": {}
  }
}
data

Current protocol state and next action for agreement signing.

objectrequired
data.state

Current server-driven signing protocol state for the authenticated actor.

idle | authenticate | confirm_authentication | assign_rcp | confirm_rcp | verify_signature | signrequired
data.action

objectrequired
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

© 2026 AllSign. All rights reserved.