Vai al contenuto

TrueScreen API (0.9.0)

TrueScreen api for TrueFlow creation and Notarization

Scarica la descrizione OpenAPI
Lingue
Server
Mock server
https://truescreen.redocly.app/_mock/openapi
https://api-stg.truescreen.io
https://api.truescreen.io

Templates

Flow templates list

Operazioni

TrueFlowsAttachments

Attachment for a True Flow

Operazioni

TrueFlows

True Flow

Operazioni

Create a TrueFlow

Richiesta

Creates a new TrueFlow from a template

Sicurezza
ApiKeyAuth
Corpoapplication/jsonobbligatorio

Request payload for creating a TrueFlow

namestring

Name of the TrueFlow

expires_atstring(date-time)

Expiration date/time for the TrueFlow (ISO 8601)

template_tokenstringobbligatorio

Token of the flow template to use

flow_dataobject

Key-value data for the flow form (keys and values depend on template)

sign_dataArray of objects

Array of signer data objects (e.g. signer_email, signer_name per item)

curl -i -X POST \
  https://truescreen.redocly.app/_mock/openapi/v1/true-flows \
  -H 'Authorization: Bearer <YOUR_API Key_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "template_token": "f6g7h8i9j0k1a1b2c3d4e5",
    "name": "New True Flow",
    "expires_at": "2026-12-31T10:00:00+01:00"
  }'

Risposte

Created TrueFlow

Corpoapplication/json
tokenstringobbligatorio

Unique identifier for the TrueFlow

trueLinkstringobbligatorio

Deep link url to the TrueFlow

Risposta
application/json
{ "token": "", "trueLink": "" }