DocsAPI ReferenceContract/bff/contract/party/add
postContractAdmin BFF

/bff/contract/party/add

Adds a contact as a new contract party with the specified role. There is no limit on the number of parties.

ContractpostBffContractPartyAdd

Parameters

3 body

3 total
Body · 3
contractIdnumberRequired

Internal contract ID.

contactIdnumberRequired

Internal contact ID to add as a party.

rolestring

Role of the contact in the contract. Use "issuer" for the issuing side or "party" for a signatory.

Default: party

Request

POST /bff/contract/party/add

post
curl -X POST "https://api.bizkithub.com/bff/contract/party/add" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "contractId": 10,
  "contactId": 42,
  "role": "party"
}'

Response

JSON payload

{
  "success": false
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key