Capvant

Get signed download URLs for a document request's files

get
https://sandbox.capvant.com/v1/deals/{ref}/requests/{id}/files
GET
/deals/{ref}/requests/{id}/files

Signed URLs use the same HMAC mechanism as the links in the relay email and expire 7 days after this call. Returns an empty files array if nothing has been uploaded yet.

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.

id*string

The document request ID, from GET /deals/{ref}/requests.

Response Body

application/json

application/json

application/json

application/json

application/json

Shell
curl -X GET "https://sandbox.capvant.com/deals/string/requests/string/files"
JSON
{  "files": [    {      "id": "string",      "filename": "string",      "content_type": "string",      "size_bytes": 0,      "url": "http://example.com"    }  ]}