Skip to main content

Overview

Gets the account’s legal identities.

HTTP request

POST /Agent/Legal/GetIdentities

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 identities to return.

Response (JSON)

{
	"Identities":Required(PIdentity)?[]
}

Response parameters

ParameterDescription
PIdentityIdentity objects found.

Notes

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