Get strategies subscribed#
About#
Returns strategies the current user is subscribed to
GET /users/current/strategies-subscribed
For more information see Swagger documentation
Headers#
Name | Type | Required | Description |
---|---|---|---|
auth-token | string | Yes | authorization token. See Authentication & authorization |
Response#
Responses:
- 200 - IDs of strategies subscribed to returned successfully. Response schema: Array<StrategyIdAndName>
- 401 - Authorization failed. Response schema: Error
Examples#
Example request:
curl -X GET --header 'Accept: application/json' --header 'auth-token: token' 'https://trading-api-v1.agiliumtrade.agiliumtrade.ai/users/current/strategies-subscribed'
Example response:
[
{
"id": "string",
"name": "string"
}
]