Get escrow transaction by invoice id

Retrieves an escrow transaction linked with the invoice_id given (any of escrow, commit or cancel invoice IDs)

Securitytilia_auth
Request
path Parameters
invoice_id
required
string (InvoiceId) <= 36 characters

The Invoice ID associated with Escrow Transaction(s) via escrow, commit or cancel invoice.

Example: inv_2V2XDLW6zogChdShdFh8WKOhHii
Responses
200

Successfully retrieved escrow transaction.

401

Unauthorized access.

404

Not found.

500

Service unavailable or server error.

get/v2/escrow/by_invoice/{invoice_id}
Request samples
Response samples
application/json
{
  • "id": "esc_2V2TxPgh8usE9neZJoEjQyFHhVh",
  • "account_id": "acct_2TiDFXHVFMlAuyy7ovvz3YPKv9b",
  • "escrow_invoice_id": "inv_2V2XDLW6zogChdShdFh8WKOhHii",
  • "commit_invoice_id": "inv_2V2XDLW6zogChdShdFh8WKOhHii",
  • "cancel_invoice_id": "inv_2V2XDLW6zogChdShdFh8WKOhHii",
  • "status": "OPEN",
  • "integrator": "Acme",
  • "created": "string",
  • "updated": "string"
}