> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Remote references

> 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.

## 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.

## HTTP request

`POST /Agent/Account/RemoteReferences`

## Authentication

Requires a valid JWT bearer token.

## Request (JSON)

```json theme={null}
{
}
```

## Response (JSON)

```json theme={null}
{
	"References": 
	{
		"domain":Required(Str(PDomain)),
		"legalId":Required(Str(PLegalId))
	}?[]
}
```

## Response parameters

| Parameter | Description                        |
| --------- | ---------------------------------- |
| PDomain   | Domain name of remote Neuron.      |
| PLegalId  | Legal ID referenced by the Neuron. |

## Notes

This endpoint uses the request schema notation described in [Pattern matching](/guides/pattern-matching).
