Create Custody Commission
curl --request POST \
--url https://api.example.com/custody-commissions \
--header 'Content-Type: application/json' \
--data '
{
"identifier": "commission123",
"registeredConsumers": [
"consumer1",
"consumer2"
]
}
'import requests
url = "https://api.example.com/custody-commissions"
payload = {
"identifier": "commission123",
"registeredConsumers": ["consumer1", "consumer2"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({identifier: 'commission123', registeredConsumers: ['consumer1', 'consumer2']})
};
fetch('https://api.example.com/custody-commissions', 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://api.example.com/custody-commissions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'identifier' => 'commission123',
'registeredConsumers' => [
'consumer1',
'consumer2'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://api.example.com/custody-commissions"
payload := strings.NewReader("{\n \"identifier\": \"commission123\",\n \"registeredConsumers\": [\n \"consumer1\",\n \"consumer2\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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.post("https://api.example.com/custody-commissions")
.header("Content-Type", "application/json")
.body("{\n \"identifier\": \"commission123\",\n \"registeredConsumers\": [\n \"consumer1\",\n \"consumer2\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/custody-commissions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"identifier\": \"commission123\",\n \"registeredConsumers\": [\n \"consumer1\",\n \"consumer2\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "123e4567-e89b-12d3-a456-426614174000",
"identifier": "commission123",
"registeredConsumers": [
"consumer1",
"consumer2"
],
"createdAt": "2024-03-20T12:00:00Z",
"updatedAt": "2024-03-20T12:00:00Z"
}Custody Commission
Create Custody Commission
Create a custody commission
POST
/
custody-commissions
Create Custody Commission
curl --request POST \
--url https://api.example.com/custody-commissions \
--header 'Content-Type: application/json' \
--data '
{
"identifier": "commission123",
"registeredConsumers": [
"consumer1",
"consumer2"
]
}
'import requests
url = "https://api.example.com/custody-commissions"
payload = {
"identifier": "commission123",
"registeredConsumers": ["consumer1", "consumer2"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({identifier: 'commission123', registeredConsumers: ['consumer1', 'consumer2']})
};
fetch('https://api.example.com/custody-commissions', 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://api.example.com/custody-commissions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'identifier' => 'commission123',
'registeredConsumers' => [
'consumer1',
'consumer2'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://api.example.com/custody-commissions"
payload := strings.NewReader("{\n \"identifier\": \"commission123\",\n \"registeredConsumers\": [\n \"consumer1\",\n \"consumer2\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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.post("https://api.example.com/custody-commissions")
.header("Content-Type", "application/json")
.body("{\n \"identifier\": \"commission123\",\n \"registeredConsumers\": [\n \"consumer1\",\n \"consumer2\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/custody-commissions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"identifier\": \"commission123\",\n \"registeredConsumers\": [\n \"consumer1\",\n \"consumer2\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "123e4567-e89b-12d3-a456-426614174000",
"identifier": "commission123",
"registeredConsumers": [
"consumer1",
"consumer2"
],
"createdAt": "2024-03-20T12:00:00Z",
"updatedAt": "2024-03-20T12:00:00Z"
}Body
application/json
Response
The custody commission has been successfully created
The unique identifier of the custody commission
Example:
"123e4567-e89b-12d3-a456-426614174000"
The unique identifier for this commission
Example:
"commission123"
List of registered consumer IDs
Example:
["consumer1", "consumer2"]When the custody commission was created
Example:
"2024-03-20T12:00:00Z"
When the custody commission was last updated
Example:
"2024-03-20T12:00:00Z"
⌘I