Skip to main content
POST
Create sub-account limit

Authorizations

X-Monaco-Signature
string
header
required

Ed25519 session-key request signing. Every authenticated request carries three headers: X-Monaco-PublicKey (64-char lowercase-hex session public key), X-Monaco-Timestamp (Unix milliseconds, within 30s of server time), and X-Monaco-Signature (hex ed25519 signature). The signature is over METHOD\npath?query\ntimestamp_ms\nSHA256_hex(body), where the body hash is the SHA-256 of the empty byte string when there is no body. Obtain the session keypair from POST /api/v1/auth/challenge followed by POST /api/v1/auth/verify.

Body

application/json
subAccountId
string<uuid>
required

Sub-account UUID to create the limit for

Example:

"123e4567-e89b-12d3-a456-426614174000"

assetId
string<uuid>
required

Asset UUID to limit

Example:

"123e4567-e89b-12d3-a456-426614174000"

maxAmount
string
required

Maximum amount allowed in token units

Minimum string length: 1
Pattern: ^-?[0-9]{1,28}(\.[0-9]{1,18})?$
Example:

"1000.00"

dailyLimit
string | null

Maximum daily spending limit in token units

Minimum string length: 1
Pattern: ^-?[0-9]{1,28}(\.[0-9]{1,18})?$
Example:

"500.00"

Response

OK

limit
object