Skip to main content

Batch create observers

POST 

/agreements/:agreement_id/observers/batch

Batch creates new observers. Use the observer IDs in subsequent requests.

Request

Path Parameters

    agreement_id cuidrequired

    POST /agreements/:agreement_id/observers/batch parameter

Body

POST /agreements/:agreement_id/observers/batch request body

    observers object[]required
  • Array [
  • 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/batch Successful response

Schema
    version stringrequired

    Possible values: [1.0]

    The version of the response schema

    result_type stringrequired

    Possible values: [list]

    A non-paginated list of the observer resource.

    resource_type stringrequired

    Possible values: [observer]

    Data contains the observer resource.

    data object[]required
  • Array [
  • 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...