Capvant

Completion state

get
https://sandbox.capvant.com/v1/deals/{ref}/completion
GET
/deals/{ref}/completion

One call for the whole close out: account confirmed, agreement attached, agreement signed, with timestamps. Use it as the state of record if you prefer polling over the completion events.

Authorization

ApiKeyAuth
X-API-Key<token>

Lender keys start with cv_live_; Partner keys start with cv_pk_. Shown once at creation, sent on every request.

In: header

Path Parameters

ref*string

The deal reference, e.g. CV93A41205. Case-insensitive.

Response Body

application/json

application/json

application/json

application/json

Shell
curl -X GET "https://sandbox.capvant.com/deals/string/completion"
JSON
{  "completion": {    "account_submitted": true,    "account_submitted_at": "2019-08-24T14:15:22Z",    "account_summary": "string",    "agreement_uploaded": true,    "agreement_uploaded_at": "2019-08-24T14:15:22Z",    "signed": true,    "signed_at": "2019-08-24T14:15:22Z",    "signature_verification": "string"  }}