Skip to main content

Overview

Gets smart contracts the account has signed.

HTTP request

POST /Agent/Legal/GetSignedContracts

Authentication

Requires a valid JWT bearer token.

Request (JSON)

{
	"offset":Optional(Int(0 <= POffset <= 2147483647)),
	"maxCount":Optional(Int(0 < PMaxCount <= 2147483647))
}

Input parameters

ParameterDescription
POffsetOffset into the list where response begins.
PMaxCountMaximum number of contracts to return.

Response (JSON)

{
	"Signatures":
	{
		"contractId":Required(Str(PContractId)),
		"legalId":Required(Str(PLegalId))
	}?[]
}

Response parameters

ParameterDescription
PContractIdIdentifiers of contracts that the account has signed.
PLegalIdLegal identities used by account when signing corresponding contract.

Notes

This endpoint uses the request schema notation described in Pattern matching.