Skip to main content

Batch create participants

POST 

/agreements/:agreement_id/participants/batch

Batch creates new participants in draft status. Use the participant IDs in subsequent requests.

Request

Path Parameters

    agreement_id cuidrequired

    POST /agreements/:agreement_id/participants/batch parameter

Body

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

    participants object[]required
  • Array [
  • email email

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

    name string

    The name of the participant. If omitted, the email adress will be used as name.

    role string

    Possible values: [signer, approver]

    Default value: signer

    The role of the participant within the signing process. If the agreement is configured for qualified signatures, only "signer" is supported. Default role is "signer".

    personal_number string

    The personal number of the participant. If provided, the signer will have to use an advanced signing method that supports a swedish personal number to sign the agreement and only be allowed to sign if the personal number matches what is provided. Only available for signers.

    order int64

    Possible values: >= -9007199254740991 and <= 9007199254740991

    Only applicable if signing order is enabled for the agreement. It specifies the order in the signing queue this participant will have. Will be put last in line if not specified. If multiple participants share the same queue number, this participant will take precendent and the rest will be moved forward accordingly.

  • ]

Responses

POST /agreements/:agreement_id/participants/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 participant resource.

    resource_type stringrequired

    Possible values: [participant]

    Data contains the participant resource.

    data object[]required
Loading...