Get provided strategies#
About#
Returns strategies the current user provides to other users
GET /users/current/provided-strategies
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/provided-strategies'
Example response:
[
{
"id": "Qwer",
"name": "Strategy"
}
]