Parties list
GET/parties
Get a list of parties. This endpoint may not be exposed by mainnet nodes.
Responses
- 200
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
parties object[]
alias string
Alias given to the party.
id string
Unique ID for the party, typically represented by a public key.
metadata object[]
Metadata to associate to a party, in a key/value format where the key describes the type of metadata in the value field.
key string
Key of the metadata.
value string
Value of the metadata.
{
"parties": [
{
"alias": "string",
"id": "string",
"metadata": [
{
"key": "string",
"value": "string"
}
]
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
code int32
details object[]
@type string
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
Loading...