Table of Contents
/Legal/GetIdentity
Allows the client to get an Identity. If the Identity belongs to someone else, and the client is not authorized access to the Identity, an error will be returned.
Note: Neurons are federated. You can get identities created on other neurons through this API on the neuron you have your account on. Federated means that the neurons interconnect to share authorized information, when requested, and permitted.
JSON
- Request
{ "legalId": Required(Str(PLegalId)) }
- Response (if successful)
{ "Identity": Required(PIdentity) }
XML
- Request
<GetIdentity xmlns="https://waher.se/Schema/BrokerAgent.xsd" legalId=(Required(Str(PLegalId)))/>
- Response (if successful)
<IdentityResponse xmlns="https://waher.se/Schema/BrokerAgent.xsd"> <[Required(PIdentity)]> </IdentityResponse>
Input Parameters
Parameter | Description |
---|---|
PLegalId |
Identity of the Legal Identity to get. |
Response Parameters
Parameter | Description |
---|---|
PIdentity |
Identity object. |
Javascript Library
Use the following asynchronous method in the Javascript Library, to call this resource.
var Response = await AgentAPI.Legal.GetIdentity(LegalId);