Retrieve a list of all securities linked by the partner.
status
: Operation status.
code
(integer): Status code (0
indicates success).
message
(string): Status message.
details
(array): Additional details.
linked_securities
(array): List of linked securities.
Each item contains:
security_guid
(string): GUID of the security in TakeProfit system.
partner_security_id
(string): Partner’s own identifier for the security.
{
"type": "object",
"properties": {
"code": { "type": "integer" },
"message": { "type": "string" },
"details": { "type": "array", "items": {} }
},
"required": ["code", "message"]
}
{
"type": "object",
"properties": {
"security_guid": { "type": "string" },
"partner_security_id": { "type": "string" }
},
"required": ["security_guid", "partner_security_id"]
}
{
"type": "object",
"properties": {
"status": { "$ref": "#/definitions/Status" },
"linked_securities": {
"type": "array",
"items": { "$ref": "#/definitions/LinkedSecurity" }
}
},
"required": ["status", "linked_securities"]
}
JWT access token
OK
The response is of type object
.