Skip to main content
PATCH
https://api-gw.verolabs.co/api/v1
/
users
/
covered-margin-call
Adjust covered margin call amount
curl --request PATCH \
  --url https://api-gw.verolabs.co/api/v1/users/covered-margin-call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accountId": "<string>",
  "symbol": "<string>",
  "amount": 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 adjusting covered margin call amount for a symbol.

accountId
string
required

Account whose covered margin value should be changed.

symbol
string
required

Symbol whose covered margin amount should be changed.

amount
number
required

New covered margin amount. Must be zero or greater.

Response

Covered margin call adjustment 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"