Skip to main content
POST
https://api-gw.verolabs.co/api/v1
/
users
/
right-subscriptions
Subscribe to a right offering
curl --request POST \
  --url https://api-gw.verolabs.co/api/v1/users/right-subscriptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "symbol": "<string>",
  "shares": 123
}
'
{
  "status": "success",
  "message": "Success"
}

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.

Body

application/json

Payload for user subscription to a right offering.

symbol
string
required

Trading symbol or product code.

shares
number
required

Number of new shares the user wants to subscribe for.

Response

Right subscription request status.

Generic status response for mutation endpoints.

status
string

Status string returned by the backend.

Example:

"success"

message
string

Human-readable status message.

Example:

"Success"