POST
/
sign
/
{id}
curl --request POST \
  --url https://dev.cardinalgray.com/sign/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "requested_signers": [
    "<string>"
  ]
}'
{
  "entryId": "<string>",
  "status": "success"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The entry ID for the loan

Body

application/json
List of specific signer IDs to request signatures from
requested_signers
string[]

Optional list of specific signers (identified via customer_id passed upon initial loan creation) to request signatures from.

Response

200
application/json
Signature requests created successfully
entryId
string

The entry ID for the loan

status
enum<string>

Status of the signature request creation

Available options:
success,
failure