Table of Contents
/Legal/GetContract
Allows the client to get a Smart Contract. If the Contract belongs to someone else, and the client is not authorized access to the Contract, an error will be returned.
Note: Neurons are federated. You can get contracts 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
{ "contractId": Required(Str(PContractId)), "format": Optional(Str(PFormat)) }
- Response (if successful)
{ "Contract": Required(PContract) }
XML
- Request
<GetContract xmlns="https://waher.se/Schema/BrokerAgent.xsd" contractId=(Required(Str(PContractId))) format=(Optional(Str(PFormat)))/>
- Response (if successful)
<ContractResponse xmlns="https://waher.se/Schema/BrokerAgent.xsd"> <[Required(PContract)]> </ContractResponse>
Input Parameters
Parameter | Description |
---|---|
PContractId |
Identity of the Smart Contract to get. |
PFormat |
Optional format for human-readable texts. If not provided, the object model for the text is returned. If provided, can be any of Markdown , Html , Text , Xaml , XamarinXaml or SmartContract . |
Response Parameters
Parameter | Description |
---|---|
PContract |
Smart Contract object. |
Javascript Library
Use the following asynchronous method in the Javascript Library, to call this resource.
var Response = await AgentAPI.Legal.GetContract(ContractId);