POST /invoices/{id}/sign
curl --request POST \
--url https://api.example.test/invoices/{id}/sign \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.test/invoices/{id}/sign"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.test/invoices/{id}/sign', 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.test/invoices/{id}/sign",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.test/invoices/{id}/sign"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.test/invoices/{id}/sign")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.test/invoices/{id}/sign")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"invoice": {
"id": 123,
"payment_type": "<string>",
"encounter_id": 123,
"person_id": 123,
"discount_rate": null,
"discount_amount": null,
"tax_rate": null,
"tax_amount": null,
"total_cents": 123,
"total_discount_cents": 123,
"total_tax_cents": 123,
"links": {
"consultation": "<string>",
"consultation_invoice_items": "<string>",
"consultation_schedule": "<string>",
"encounter": "<string>"
},
"tax_attributes": {
"use_cfdi": "<string>",
"payment_form": "<string>",
"payment_method": "<string>"
},
"signed_at": "2023-11-07T05:31:56Z",
"globally_invoiced": true,
"cause": "<string>",
"starts_at": "2023-11-07T05:31:56Z"
}
}Electronic invoicing
POST /invoices/{id}/sign
POST
/
invoices
/
{id}
/
sign
POST /invoices/{id}/sign
curl --request POST \
--url https://api.example.test/invoices/{id}/sign \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.test/invoices/{id}/sign"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.test/invoices/{id}/sign', 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.test/invoices/{id}/sign",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.test/invoices/{id}/sign"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.test/invoices/{id}/sign")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.test/invoices/{id}/sign")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"invoice": {
"id": 123,
"payment_type": "<string>",
"encounter_id": 123,
"person_id": 123,
"discount_rate": null,
"discount_amount": null,
"tax_rate": null,
"tax_amount": null,
"total_cents": 123,
"total_discount_cents": 123,
"total_tax_cents": 123,
"links": {
"consultation": "<string>",
"consultation_invoice_items": "<string>",
"consultation_schedule": "<string>",
"encounter": "<string>"
},
"tax_attributes": {
"use_cfdi": "<string>",
"payment_form": "<string>",
"payment_method": "<string>"
},
"signed_at": "2023-11-07T05:31:56Z",
"globally_invoiced": true,
"cause": "<string>",
"starts_at": "2023-11-07T05:31:56Z"
}
}⌘I