Create ticket
curl --request POST \
--url https://channels-service-alpha.fourvenues.com/tickets \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"ticket_rate_id": "5f8d0f8b9d2b3b0017b6d8a0",
"tickets": [
{
"price_id": "1234567890",
"total_price": 10,
"qr_code": "ABCDE12345",
"fee": 1,
"full_name": "John Doe",
"phone": "+34666666666",
"email": "john@fourvenues.com",
"birthday": "1990-01-01",
"address": "123 Main St, New York, NY 10001",
"postal_code": "10001",
"country_code": "ES",
"personal_document_type": "dni",
"personal_document_number": "1234567890",
"warranty": {
"enabled": true,
"hours": 12
},
"answers": [
{
"question_id": "1234567890",
"answer": "Answer"
}
],
"supplements": [
{
"supplement_id": "<string>",
"price": 123,
"service_charge_amount": 123,
"quantity": 123
}
]
}
],
"discount_code": "DISCOUNT_CODE",
"send_resources": true
}
'import requests
url = "https://channels-service-alpha.fourvenues.com/tickets"
payload = {
"ticket_rate_id": "5f8d0f8b9d2b3b0017b6d8a0",
"tickets": [
{
"price_id": "1234567890",
"total_price": 10,
"qr_code": "ABCDE12345",
"fee": 1,
"full_name": "John Doe",
"phone": "+34666666666",
"email": "john@fourvenues.com",
"birthday": "1990-01-01",
"address": "123 Main St, New York, NY 10001",
"postal_code": "10001",
"country_code": "ES",
"personal_document_type": "dni",
"personal_document_number": "1234567890",
"warranty": {
"enabled": True,
"hours": 12
},
"answers": [
{
"question_id": "1234567890",
"answer": "Answer"
}
],
"supplements": [
{
"supplement_id": "<string>",
"price": 123,
"service_charge_amount": 123,
"quantity": 123
}
]
}
],
"discount_code": "DISCOUNT_CODE",
"send_resources": True
}
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
ticket_rate_id: '5f8d0f8b9d2b3b0017b6d8a0',
tickets: [
{
price_id: '1234567890',
total_price: 10,
qr_code: 'ABCDE12345',
fee: 1,
full_name: 'John Doe',
phone: '+34666666666',
email: 'john@fourvenues.com',
birthday: '1990-01-01',
address: '123 Main St, New York, NY 10001',
postal_code: '10001',
country_code: 'ES',
personal_document_type: 'dni',
personal_document_number: '1234567890',
warranty: {enabled: true, hours: 12},
answers: [{question_id: '1234567890', answer: 'Answer'}],
supplements: [
{
supplement_id: '<string>',
price: 123,
service_charge_amount: 123,
quantity: 123
}
]
}
],
discount_code: 'DISCOUNT_CODE',
send_resources: true
})
};
fetch('https://channels-service-alpha.fourvenues.com/tickets', 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://channels-service-alpha.fourvenues.com/tickets",
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([
'ticket_rate_id' => '5f8d0f8b9d2b3b0017b6d8a0',
'tickets' => [
[
'price_id' => '1234567890',
'total_price' => 10,
'qr_code' => 'ABCDE12345',
'fee' => 1,
'full_name' => 'John Doe',
'phone' => '+34666666666',
'email' => 'john@fourvenues.com',
'birthday' => '1990-01-01',
'address' => '123 Main St, New York, NY 10001',
'postal_code' => '10001',
'country_code' => 'ES',
'personal_document_type' => 'dni',
'personal_document_number' => '1234567890',
'warranty' => [
'enabled' => true,
'hours' => 12
],
'answers' => [
[
'question_id' => '1234567890',
'answer' => 'Answer'
]
],
'supplements' => [
[
'supplement_id' => '<string>',
'price' => 123,
'service_charge_amount' => 123,
'quantity' => 123
]
]
]
],
'discount_code' => 'DISCOUNT_CODE',
'send_resources' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Api-Key: <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://channels-service-alpha.fourvenues.com/tickets"
payload := strings.NewReader("{\n \"ticket_rate_id\": \"5f8d0f8b9d2b3b0017b6d8a0\",\n \"tickets\": [\n {\n \"price_id\": \"1234567890\",\n \"total_price\": 10,\n \"qr_code\": \"ABCDE12345\",\n \"fee\": 1,\n \"full_name\": \"John Doe\",\n \"phone\": \"+34666666666\",\n \"email\": \"john@fourvenues.com\",\n \"birthday\": \"1990-01-01\",\n \"address\": \"123 Main St, New York, NY 10001\",\n \"postal_code\": \"10001\",\n \"country_code\": \"ES\",\n \"personal_document_type\": \"dni\",\n \"personal_document_number\": \"1234567890\",\n \"warranty\": {\n \"enabled\": true,\n \"hours\": 12\n },\n \"answers\": [\n {\n \"question_id\": \"1234567890\",\n \"answer\": \"Answer\"\n }\n ],\n \"supplements\": [\n {\n \"supplement_id\": \"<string>\",\n \"price\": 123,\n \"service_charge_amount\": 123,\n \"quantity\": 123\n }\n ]\n }\n ],\n \"discount_code\": \"DISCOUNT_CODE\",\n \"send_resources\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Api-Key", "<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.post("https://channels-service-alpha.fourvenues.com/tickets")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"ticket_rate_id\": \"5f8d0f8b9d2b3b0017b6d8a0\",\n \"tickets\": [\n {\n \"price_id\": \"1234567890\",\n \"total_price\": 10,\n \"qr_code\": \"ABCDE12345\",\n \"fee\": 1,\n \"full_name\": \"John Doe\",\n \"phone\": \"+34666666666\",\n \"email\": \"john@fourvenues.com\",\n \"birthday\": \"1990-01-01\",\n \"address\": \"123 Main St, New York, NY 10001\",\n \"postal_code\": \"10001\",\n \"country_code\": \"ES\",\n \"personal_document_type\": \"dni\",\n \"personal_document_number\": \"1234567890\",\n \"warranty\": {\n \"enabled\": true,\n \"hours\": 12\n },\n \"answers\": [\n {\n \"question_id\": \"1234567890\",\n \"answer\": \"Answer\"\n }\n ],\n \"supplements\": [\n {\n \"supplement_id\": \"<string>\",\n \"price\": 123,\n \"service_charge_amount\": 123,\n \"quantity\": 123\n }\n ]\n }\n ],\n \"discount_code\": \"DISCOUNT_CODE\",\n \"send_resources\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://channels-service-alpha.fourvenues.com/tickets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"ticket_rate_id\": \"5f8d0f8b9d2b3b0017b6d8a0\",\n \"tickets\": [\n {\n \"price_id\": \"1234567890\",\n \"total_price\": 10,\n \"qr_code\": \"ABCDE12345\",\n \"fee\": 1,\n \"full_name\": \"John Doe\",\n \"phone\": \"+34666666666\",\n \"email\": \"john@fourvenues.com\",\n \"birthday\": \"1990-01-01\",\n \"address\": \"123 Main St, New York, NY 10001\",\n \"postal_code\": \"10001\",\n \"country_code\": \"ES\",\n \"personal_document_type\": \"dni\",\n \"personal_document_number\": \"1234567890\",\n \"warranty\": {\n \"enabled\": true,\n \"hours\": 12\n },\n \"answers\": [\n {\n \"question_id\": \"1234567890\",\n \"answer\": \"Answer\"\n }\n ],\n \"supplements\": [\n {\n \"supplement_id\": \"<string>\",\n \"price\": 123,\n \"service_charge_amount\": 123,\n \"quantity\": 123\n }\n ]\n }\n ],\n \"discount_code\": \"DISCOUNT_CODE\",\n \"send_resources\": true\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"_id": "<string>",
"event_id": "<string>",
"ticket_rate_id": "<string>",
"status": "<string>",
"price": {
"_id": "<string>",
"name": "<string>",
"price": 123,
"fee_type": "fixed",
"fee_quantity": 123,
"includes": "<string>",
"additional_info": "<string>",
"quantity": 123,
"valid_until": "<string>",
"used": 123
},
"payment_currency": "<string>",
"channel_id": "<string>",
"supplements": [
{
"_id": "<string>",
"supplementId": "<string>",
"label": "<string>",
"price": 123,
"has_fake_price": true,
"fake_price": 123,
"description": "<string>",
"total_price": 123,
"supplement_units": 123,
"product_quantity": 123,
"redemption_deadline_value": 123
}
],
"refunds": [
{
"channel_id": "<string>",
"amount": 123,
"at": "<string>"
}
],
"total_supplements": 123,
"total_fees": 123,
"total_price": 123,
"qr_code": "<string>",
"fees": {
"organization": 123,
"discocil": 123
},
"full_name": "<string>",
"phone": "<string>",
"email": "<string>",
"gender": "<string>",
"birthday": "<string>",
"address": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"personal_document_type": "<string>",
"personal_document_number": "<string>",
"answers": [
{
"questionId": "<string>",
"answer": "<string>"
}
],
"refunded": 123,
"refunded_at": "<string>",
"for": 123,
"enter": 123,
"entry_time": "<string>",
"activation_date": "<string>",
"payment_id": "<string>",
"supplements_service_charge_total": 123,
"discount_code": {
"id": "<string>",
"code": "<string>",
"amount": 123
},
"remaining_breakdown": {
"price": 123,
"warranty": 123,
"suplements": 123,
"ggdd": 123,
"surcharge": 123,
"suplements_upselling": 123,
"ggdd_upselling": 123
},
"ticket_original": {
"total_price": 123,
"price": 123
},
"surcharge": {
"amount": 123
},
"warranty": {
"total": 123,
"hours": 123,
"cost": 123
},
"payment": {
"status": "<string>",
"rate_id": "<string>",
"organization_id": "<string>",
"event_id": "<string>",
"resource_type": "<string>",
"resource_ids": [
"<string>"
],
"total": {
"amount": 123,
"fees": 123
},
"currency": "<string>",
"sale_type": "<string>",
"paid_at": "<string>",
"expires_at": "<string>",
"gateway_account_id": "<string>",
"is_channel_manager": true,
"total_discount": 123,
"_id": "<string>",
"metadata": "<unknown>",
"send_resources": true
}
}
],
"success": true
}Tickets
Create ticket
Creates one or more active tickets (external gateway). Supplements require supplement_id and price per unit; optional quantity applies purchase_limit validation after collapsing duplicate supplement_id entries. For external payments, you may also send service_charge_amount (absolute amount per unit) for a supplement; it will be stored separately as service_charge_amount/service_charge_type=fixed and added into the stored unit price. Free supplements from the ticket rate are NOT auto-added here; the selection must be provided by the client.
POST
/
tickets
Create ticket
curl --request POST \
--url https://channels-service-alpha.fourvenues.com/tickets \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"ticket_rate_id": "5f8d0f8b9d2b3b0017b6d8a0",
"tickets": [
{
"price_id": "1234567890",
"total_price": 10,
"qr_code": "ABCDE12345",
"fee": 1,
"full_name": "John Doe",
"phone": "+34666666666",
"email": "john@fourvenues.com",
"birthday": "1990-01-01",
"address": "123 Main St, New York, NY 10001",
"postal_code": "10001",
"country_code": "ES",
"personal_document_type": "dni",
"personal_document_number": "1234567890",
"warranty": {
"enabled": true,
"hours": 12
},
"answers": [
{
"question_id": "1234567890",
"answer": "Answer"
}
],
"supplements": [
{
"supplement_id": "<string>",
"price": 123,
"service_charge_amount": 123,
"quantity": 123
}
]
}
],
"discount_code": "DISCOUNT_CODE",
"send_resources": true
}
'import requests
url = "https://channels-service-alpha.fourvenues.com/tickets"
payload = {
"ticket_rate_id": "5f8d0f8b9d2b3b0017b6d8a0",
"tickets": [
{
"price_id": "1234567890",
"total_price": 10,
"qr_code": "ABCDE12345",
"fee": 1,
"full_name": "John Doe",
"phone": "+34666666666",
"email": "john@fourvenues.com",
"birthday": "1990-01-01",
"address": "123 Main St, New York, NY 10001",
"postal_code": "10001",
"country_code": "ES",
"personal_document_type": "dni",
"personal_document_number": "1234567890",
"warranty": {
"enabled": True,
"hours": 12
},
"answers": [
{
"question_id": "1234567890",
"answer": "Answer"
}
],
"supplements": [
{
"supplement_id": "<string>",
"price": 123,
"service_charge_amount": 123,
"quantity": 123
}
]
}
],
"discount_code": "DISCOUNT_CODE",
"send_resources": True
}
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
ticket_rate_id: '5f8d0f8b9d2b3b0017b6d8a0',
tickets: [
{
price_id: '1234567890',
total_price: 10,
qr_code: 'ABCDE12345',
fee: 1,
full_name: 'John Doe',
phone: '+34666666666',
email: 'john@fourvenues.com',
birthday: '1990-01-01',
address: '123 Main St, New York, NY 10001',
postal_code: '10001',
country_code: 'ES',
personal_document_type: 'dni',
personal_document_number: '1234567890',
warranty: {enabled: true, hours: 12},
answers: [{question_id: '1234567890', answer: 'Answer'}],
supplements: [
{
supplement_id: '<string>',
price: 123,
service_charge_amount: 123,
quantity: 123
}
]
}
],
discount_code: 'DISCOUNT_CODE',
send_resources: true
})
};
fetch('https://channels-service-alpha.fourvenues.com/tickets', 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://channels-service-alpha.fourvenues.com/tickets",
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([
'ticket_rate_id' => '5f8d0f8b9d2b3b0017b6d8a0',
'tickets' => [
[
'price_id' => '1234567890',
'total_price' => 10,
'qr_code' => 'ABCDE12345',
'fee' => 1,
'full_name' => 'John Doe',
'phone' => '+34666666666',
'email' => 'john@fourvenues.com',
'birthday' => '1990-01-01',
'address' => '123 Main St, New York, NY 10001',
'postal_code' => '10001',
'country_code' => 'ES',
'personal_document_type' => 'dni',
'personal_document_number' => '1234567890',
'warranty' => [
'enabled' => true,
'hours' => 12
],
'answers' => [
[
'question_id' => '1234567890',
'answer' => 'Answer'
]
],
'supplements' => [
[
'supplement_id' => '<string>',
'price' => 123,
'service_charge_amount' => 123,
'quantity' => 123
]
]
]
],
'discount_code' => 'DISCOUNT_CODE',
'send_resources' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Api-Key: <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://channels-service-alpha.fourvenues.com/tickets"
payload := strings.NewReader("{\n \"ticket_rate_id\": \"5f8d0f8b9d2b3b0017b6d8a0\",\n \"tickets\": [\n {\n \"price_id\": \"1234567890\",\n \"total_price\": 10,\n \"qr_code\": \"ABCDE12345\",\n \"fee\": 1,\n \"full_name\": \"John Doe\",\n \"phone\": \"+34666666666\",\n \"email\": \"john@fourvenues.com\",\n \"birthday\": \"1990-01-01\",\n \"address\": \"123 Main St, New York, NY 10001\",\n \"postal_code\": \"10001\",\n \"country_code\": \"ES\",\n \"personal_document_type\": \"dni\",\n \"personal_document_number\": \"1234567890\",\n \"warranty\": {\n \"enabled\": true,\n \"hours\": 12\n },\n \"answers\": [\n {\n \"question_id\": \"1234567890\",\n \"answer\": \"Answer\"\n }\n ],\n \"supplements\": [\n {\n \"supplement_id\": \"<string>\",\n \"price\": 123,\n \"service_charge_amount\": 123,\n \"quantity\": 123\n }\n ]\n }\n ],\n \"discount_code\": \"DISCOUNT_CODE\",\n \"send_resources\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Api-Key", "<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.post("https://channels-service-alpha.fourvenues.com/tickets")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"ticket_rate_id\": \"5f8d0f8b9d2b3b0017b6d8a0\",\n \"tickets\": [\n {\n \"price_id\": \"1234567890\",\n \"total_price\": 10,\n \"qr_code\": \"ABCDE12345\",\n \"fee\": 1,\n \"full_name\": \"John Doe\",\n \"phone\": \"+34666666666\",\n \"email\": \"john@fourvenues.com\",\n \"birthday\": \"1990-01-01\",\n \"address\": \"123 Main St, New York, NY 10001\",\n \"postal_code\": \"10001\",\n \"country_code\": \"ES\",\n \"personal_document_type\": \"dni\",\n \"personal_document_number\": \"1234567890\",\n \"warranty\": {\n \"enabled\": true,\n \"hours\": 12\n },\n \"answers\": [\n {\n \"question_id\": \"1234567890\",\n \"answer\": \"Answer\"\n }\n ],\n \"supplements\": [\n {\n \"supplement_id\": \"<string>\",\n \"price\": 123,\n \"service_charge_amount\": 123,\n \"quantity\": 123\n }\n ]\n }\n ],\n \"discount_code\": \"DISCOUNT_CODE\",\n \"send_resources\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://channels-service-alpha.fourvenues.com/tickets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"ticket_rate_id\": \"5f8d0f8b9d2b3b0017b6d8a0\",\n \"tickets\": [\n {\n \"price_id\": \"1234567890\",\n \"total_price\": 10,\n \"qr_code\": \"ABCDE12345\",\n \"fee\": 1,\n \"full_name\": \"John Doe\",\n \"phone\": \"+34666666666\",\n \"email\": \"john@fourvenues.com\",\n \"birthday\": \"1990-01-01\",\n \"address\": \"123 Main St, New York, NY 10001\",\n \"postal_code\": \"10001\",\n \"country_code\": \"ES\",\n \"personal_document_type\": \"dni\",\n \"personal_document_number\": \"1234567890\",\n \"warranty\": {\n \"enabled\": true,\n \"hours\": 12\n },\n \"answers\": [\n {\n \"question_id\": \"1234567890\",\n \"answer\": \"Answer\"\n }\n ],\n \"supplements\": [\n {\n \"supplement_id\": \"<string>\",\n \"price\": 123,\n \"service_charge_amount\": 123,\n \"quantity\": 123\n }\n ]\n }\n ],\n \"discount_code\": \"DISCOUNT_CODE\",\n \"send_resources\": true\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"_id": "<string>",
"event_id": "<string>",
"ticket_rate_id": "<string>",
"status": "<string>",
"price": {
"_id": "<string>",
"name": "<string>",
"price": 123,
"fee_type": "fixed",
"fee_quantity": 123,
"includes": "<string>",
"additional_info": "<string>",
"quantity": 123,
"valid_until": "<string>",
"used": 123
},
"payment_currency": "<string>",
"channel_id": "<string>",
"supplements": [
{
"_id": "<string>",
"supplementId": "<string>",
"label": "<string>",
"price": 123,
"has_fake_price": true,
"fake_price": 123,
"description": "<string>",
"total_price": 123,
"supplement_units": 123,
"product_quantity": 123,
"redemption_deadline_value": 123
}
],
"refunds": [
{
"channel_id": "<string>",
"amount": 123,
"at": "<string>"
}
],
"total_supplements": 123,
"total_fees": 123,
"total_price": 123,
"qr_code": "<string>",
"fees": {
"organization": 123,
"discocil": 123
},
"full_name": "<string>",
"phone": "<string>",
"email": "<string>",
"gender": "<string>",
"birthday": "<string>",
"address": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"personal_document_type": "<string>",
"personal_document_number": "<string>",
"answers": [
{
"questionId": "<string>",
"answer": "<string>"
}
],
"refunded": 123,
"refunded_at": "<string>",
"for": 123,
"enter": 123,
"entry_time": "<string>",
"activation_date": "<string>",
"payment_id": "<string>",
"supplements_service_charge_total": 123,
"discount_code": {
"id": "<string>",
"code": "<string>",
"amount": 123
},
"remaining_breakdown": {
"price": 123,
"warranty": 123,
"suplements": 123,
"ggdd": 123,
"surcharge": 123,
"suplements_upselling": 123,
"ggdd_upselling": 123
},
"ticket_original": {
"total_price": 123,
"price": 123
},
"surcharge": {
"amount": 123
},
"warranty": {
"total": 123,
"hours": 123,
"cost": 123
},
"payment": {
"status": "<string>",
"rate_id": "<string>",
"organization_id": "<string>",
"event_id": "<string>",
"resource_type": "<string>",
"resource_ids": [
"<string>"
],
"total": {
"amount": 123,
"fees": 123
},
"currency": "<string>",
"sale_type": "<string>",
"paid_at": "<string>",
"expires_at": "<string>",
"gateway_account_id": "<string>",
"is_channel_manager": true,
"total_discount": 123,
"_id": "<string>",
"metadata": "<unknown>",
"send_resources": true
}
}
],
"success": true
}Authorizations
Body
application/json