curl --request POST \
--url http://127.0.0.1:8080/v1/c/invoice \
--header 'Content-Type: application/json' \
--header 'wb-key: <api-key>' \
--data '
{
"contract_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
"customer_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
"invoice_item_ids": [
"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670"
]
}
'import requests
url = "http://127.0.0.1:8080/v1/c/invoice"
payload = {
"contract_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
"customer_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
"invoice_item_ids": ["Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670"]
}
headers = {
"wb-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'wb-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
contract_id: 'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670',
customer_id: 'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670',
invoice_item_ids: ['Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670']
})
};
fetch('http://127.0.0.1:8080/v1/c/invoice', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8080",
CURLOPT_URL => "http://127.0.0.1:8080/v1/c/invoice",
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([
'contract_id' => 'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670',
'customer_id' => 'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670',
'invoice_item_ids' => [
'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"wb-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 := "http://127.0.0.1:8080/v1/c/invoice"
payload := strings.NewReader("{\n \"contract_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"customer_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"invoice_item_ids\": [\n \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("wb-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("http://127.0.0.1:8080/v1/c/invoice")
.header("wb-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"contract_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"customer_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"invoice_item_ids\": [\n \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://127.0.0.1:8080/v1/c/invoice")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["wb-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"contract_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"customer_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"invoice_item_ids\": [\n \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\"\n ]\n}"
response = http.request(request)
puts response.read_body[
"Inv_11111a3a-2b38-4689-a32d-14bf2e62b1a1",
"Inv_22221a3a-2b38-4689-a32d-14bf2e62b1a2"
]Manually Trigger Invoice Generation
curl --request POST \
--url http://127.0.0.1:8080/v1/c/invoice \
--header 'Content-Type: application/json' \
--header 'wb-key: <api-key>' \
--data '
{
"contract_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
"customer_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
"invoice_item_ids": [
"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670"
]
}
'import requests
url = "http://127.0.0.1:8080/v1/c/invoice"
payload = {
"contract_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
"customer_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
"invoice_item_ids": ["Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670"]
}
headers = {
"wb-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'wb-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
contract_id: 'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670',
customer_id: 'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670',
invoice_item_ids: ['Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670']
})
};
fetch('http://127.0.0.1:8080/v1/c/invoice', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8080",
CURLOPT_URL => "http://127.0.0.1:8080/v1/c/invoice",
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([
'contract_id' => 'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670',
'customer_id' => 'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670',
'invoice_item_ids' => [
'Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"wb-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 := "http://127.0.0.1:8080/v1/c/invoice"
payload := strings.NewReader("{\n \"contract_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"customer_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"invoice_item_ids\": [\n \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("wb-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("http://127.0.0.1:8080/v1/c/invoice")
.header("wb-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"contract_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"customer_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"invoice_item_ids\": [\n \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://127.0.0.1:8080/v1/c/invoice")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["wb-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"contract_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"customer_id\": \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\",\n \"invoice_item_ids\": [\n \"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670\"\n ]\n}"
response = http.request(request)
puts response.read_body[
"Inv_11111a3a-2b38-4689-a32d-14bf2e62b1a1",
"Inv_22221a3a-2b38-4689-a32d-14bf2e62b1a2"
]Authorizations
Body
Arguments for invoice(s) creation
Invoice Item identifiers are optional: if this array isn't provided, all items that can currently be attached will be attached.
The customer is optional: if not provided and if no list of items is provided, then all attachable items belonging to this wb_customer will be grouped into invoices.
Unique identifier of an object. Consists of object class prefix and a UUID
"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670"
Unique identifier of an object. Consists of object class prefix and a UUID
"Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670"
optional list of invoice items to gather into one or several invoices (the invoices will be consistent: same contract, and items in automatic payment won't be mixed with items in manual payement)
Unique identifier of an object. Consists of object class prefix and a UUID
Response
Nothing to create