Link
List Linked Securities
Retrieve a list of all securities linked by the partner.
Response
-
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.
-
-
JSON Schemas
Status
{
"type": "object",
"properties": {
"code": { "type": "integer" },
"message": { "type": "string" },
"details": { "type": "array", "items": {} }
},
"required": ["code", "message"]
}
Linked Security
{
"type": "object",
"properties": {
"security_guid": { "type": "string" },
"partner_security_id": { "type": "string" }
},
"required": ["security_guid", "partner_security_id"]
}
List Linked Securities
{
"type": "object",
"properties": {
"status": { "$ref": "#/definitions/Status" },
"linked_securities": {
"type": "array",
"items": { "$ref": "#/definitions/LinkedSecurity" }
}
},
"required": ["status", "linked_securities"]
}
POST
Headers
JWT access token
Response
200 - application/json
OK
The response is of type object
.