Skip to main content
GET
https://api-gw.verolabs.co/api/v1
/
users
/
right-subscriptions
List current user right subscription requests
curl --request GET \
  --url https://api-gw.verolabs.co/api/v1/users/right-subscriptions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "symbol": "<string>",
    "ratio": "100:20",
    "price": 123,
    "startDate": "<string>",
    "endDate": "<string>",
    "status": "<string>",
    "note": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.oms.verolabs.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT returned by Ory /sessions/whoami?tokenize_as=jwt_template_1 and stored by ApiClient.

Response

Right subscription requests for the current user.

id
integer

Unique record identifier.

symbol
string

Trading symbol or product code.

ratio
string

Subscription ratio, for example 100:20.

Example:

"100:20"

price
number

Subscription price per share.

startDate
string

Subscription period start date.

endDate
string

Subscription period end date.

status
string

Current status value.

note
string

Optional free-form note.

createdAt
string

Record creation timestamp.

updatedAt
string

Record last update timestamp.