Skip to main content

Create an Observer

POST 

/agreements/:agreement_id/observers

Creates a new observer. Use the observer ID in subsequent requests.

Request

Path Parameters

    agreement_id cuidrequired

    POST /agreements/:agreement_id/observers parameter

Body

POST /agreements/:agreement_id/observers request body

    email email

    The email of the observer. Will be used in all communication, if email communication is enabled for the agreement.

    name string

    The name of the observer

    observer_scope object

    Either "viewer" or "cc". If the observer is a viewer, they will gain access to the signing room. Otherwise they will only receive a copy of the signed document.

    oneOf

    string

Responses

POST /agreements/:agreement_id/observers Successful response

Schema
    version stringrequired

    Possible values: [1.0]

    The version of the response schema

    result_type stringrequired

    Possible values: [single]

    A single object of the observer resource.

    resource_type stringrequired

    Possible values: [observer]

    Data contains the observer resource.

    data objectrequired

    The resource data.

    id cuidrequired

    The unique identifier of the observer

    resource_type stringrequired

    Possible values: [observer]

    name stringnullablerequired

    The name of the observer. Required if no email is provided.

    email stringnullablerequired

    The email of the observer. Required if agreement is configured to send emails or if the observer_scope is 'cc'.

    observer_scope object required

    The scope of the observer. If specified as viewer, they will gain access to the signing room to follow the process. Otherwise, they will only receive the final, signed document.

    oneOf

    string

    agreement cuidrequired

    The unique identifier for the agreement this observer belongs to

    signing_room_url urlnullablerequired

    The URL to the signing room for the observer. Only available after the agreement is not in draft.

    created_at stringrequired

    UTC datetime ISO string

    updated_at stringrequired

    UTC datetime ISO string

Loading...