Skip to main content
POST
/
Agent
/
Account
/
RemoteReferences
Remote References
curl --request POST \
  --url https://{host}/Agent/Account/RemoteReferences \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "References": [
    {
      "domain": "<string>",
      "legalId": "<string>"
    }
  ]
}

Overview

Allows the client to get a list of references to remote neurons the user can quick-login to using /Account/RemoteQuickLogin. Note: The list may not be complete. Each time a Legal Identity is added or removed as a reference on an Neuron, an incremental message is sent ot the Neuron hosting the associated account. If the list is not complete, just remove and add the reference to the Legal ID again on the remote broker, to update the list.

Authentication

Requires a valid JWT bearer token.

Notes

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The body is of type object.

Response

200 - application/json

Success

References
object[]