Returns the children of the included message of a transaction.
GET/api/v1/transactions/:transactionId/included-message/children
Returns the children of the included message of a transaction.
Request
Path Parameters
Identifier of the transaction to look up.
Responses
- 200
- 400
- 403
- 500
Successful operation.
- application/json
- Schema
- Example (from schema)
- Children were found
- No children were found
Schema
data objectrequired
The message identifier of the given message that was used to look up its children.
The number of results it can return at most.
The actual number of found results.
The message identifiers of the found children.
{
"data": {
"messageId": "string",
"maxResults": 0,
"count": 0,
"childrenMessageIds": [
"string"
]
}
}
{
"data": {
"messageId": "ed3c3f1a319ff4e909cf2771d79fece0ac9bd9fd2ee49ea6c0885c9cb3b1248c",
"maxResults": 1000,
"count": 2,
"childrenMessageIds": [
"1c6943b0487c92fd057d4d22ad844cc37ee27fe6fbe88e5ff0d20b2233f75b9d",
"7ed3d67fc7b619e72e588f51fef2379e43e6e9a856635843b3f29aa3a3f1f006"
]
}
}
{
"data": {
"messageId": "7ed3d67fc7b619e72e588f51fef2379e43e6e9a856635843b3f29aa3a3f1f006",
"maxResults": 1000,
"count": 0,
"childrenMessageIds": []
}
}
Unsuccessful operation: indicates that the provided data is invalid.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 400,
"message": "invalid data provided"
}
}
Unsuccessful operation: indicates that the endpoint is not available for public use.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 403,
"message": "not available for public use"
}
}
Unsuccessful operation: indicates that an unexpected, internal server error happened which prevented the node from fulfilling the request.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 500,
"message": "internal server error"
}
}