curl --request PUT \
--url https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId} \
--header 'Content-Type: application/json' \
--header 'X-Monaco-Signature: <api-key>' \
--data '
{
"subAccountId": "123e4567-e89b-12d3-a456-426614174000",
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"maxAmount": "1500.00",
"dailyLimit": "500.00",
"isActive": true
}
'import requests
url = "https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}"
payload = {
"subAccountId": "123e4567-e89b-12d3-a456-426614174000",
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"maxAmount": "1500.00",
"dailyLimit": "500.00",
"isActive": True
}
headers = {
"X-Monaco-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'X-Monaco-Signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
subAccountId: '123e4567-e89b-12d3-a456-426614174000',
assetId: '123e4567-e89b-12d3-a456-426614174000',
maxAmount: '1500.00',
dailyLimit: '500.00',
isActive: true
})
};
fetch('https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'subAccountId' => '123e4567-e89b-12d3-a456-426614174000',
'assetId' => '123e4567-e89b-12d3-a456-426614174000',
'maxAmount' => '1500.00',
'dailyLimit' => '500.00',
'isActive' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Monaco-Signature: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}"
payload := strings.NewReader("{\n \"subAccountId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"maxAmount\": \"1500.00\",\n \"dailyLimit\": \"500.00\",\n \"isActive\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("X-Monaco-Signature", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}")
.header("X-Monaco-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"subAccountId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"maxAmount\": \"1500.00\",\n \"dailyLimit\": \"500.00\",\n \"isActive\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["X-Monaco-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"subAccountId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"maxAmount\": \"1500.00\",\n \"dailyLimit\": \"500.00\",\n \"isActive\": true\n}"
response = http.request(request)
puts response.read_body{
"limit": {
"id": "987e6543-e21b-12d3-a456-426614174000",
"subAccountId": "123e4567-e89b-12d3-a456-426614174000",
"token": "0x6a86da986797d59a839d136db490292cd560c131",
"dailyLimit": "1000.00",
"usedToday": "250.50",
"createdAt": "2023-11-13T10:30:00Z",
"updatedAt": "2023-11-13T10:30:00Z",
"masterAccountId": "123e4567-e89b-12d3-a456-426614174001",
"maxAmount": "1500.00",
"lastResetAt": "2023-11-13T00:00:00Z",
"isActive": true
}
}Update sub-account limit
Update sub-account limit.
Update an existing limit for a sub-account. Only master accounts can update limits for their sub-accounts.
curl --request PUT \
--url https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId} \
--header 'Content-Type: application/json' \
--header 'X-Monaco-Signature: <api-key>' \
--data '
{
"subAccountId": "123e4567-e89b-12d3-a456-426614174000",
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"maxAmount": "1500.00",
"dailyLimit": "500.00",
"isActive": true
}
'import requests
url = "https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}"
payload = {
"subAccountId": "123e4567-e89b-12d3-a456-426614174000",
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"maxAmount": "1500.00",
"dailyLimit": "500.00",
"isActive": True
}
headers = {
"X-Monaco-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'X-Monaco-Signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
subAccountId: '123e4567-e89b-12d3-a456-426614174000',
assetId: '123e4567-e89b-12d3-a456-426614174000',
maxAmount: '1500.00',
dailyLimit: '500.00',
isActive: true
})
};
fetch('https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'subAccountId' => '123e4567-e89b-12d3-a456-426614174000',
'assetId' => '123e4567-e89b-12d3-a456-426614174000',
'maxAmount' => '1500.00',
'dailyLimit' => '500.00',
'isActive' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Monaco-Signature: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}"
payload := strings.NewReader("{\n \"subAccountId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"maxAmount\": \"1500.00\",\n \"dailyLimit\": \"500.00\",\n \"isActive\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("X-Monaco-Signature", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}")
.header("X-Monaco-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"subAccountId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"maxAmount\": \"1500.00\",\n \"dailyLimit\": \"500.00\",\n \"isActive\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/accounts/sub-accounts/{subAccountId}/limits/{assetId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["X-Monaco-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"subAccountId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"maxAmount\": \"1500.00\",\n \"dailyLimit\": \"500.00\",\n \"isActive\": true\n}"
response = http.request(request)
puts response.read_body{
"limit": {
"id": "987e6543-e21b-12d3-a456-426614174000",
"subAccountId": "123e4567-e89b-12d3-a456-426614174000",
"token": "0x6a86da986797d59a839d136db490292cd560c131",
"dailyLimit": "1000.00",
"usedToday": "250.50",
"createdAt": "2023-11-13T10:30:00Z",
"updatedAt": "2023-11-13T10:30:00Z",
"masterAccountId": "123e4567-e89b-12d3-a456-426614174001",
"maxAmount": "1500.00",
"lastResetAt": "2023-11-13T00:00:00Z",
"isActive": true
}
}Authorizations
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.
Path Parameters
Body
Sub-account UUID
"123e4567-e89b-12d3-a456-426614174000"
Asset UUID
"123e4567-e89b-12d3-a456-426614174000"
New maximum amount allowed in token units
1^-?[0-9]{1,28}(\.[0-9]{1,18})?$"1500.00"
New maximum daily spending limit in token units
1^-?[0-9]{1,28}(\.[0-9]{1,18})?$"500.00"
Whether the limit is active
true
Response
OK
Show child attributes
Show child attributes
Was this page helpful?

