POST
/
v1
/
invoices
/
{id}
/
send
Envoyer (ou ré-envoyer) le courriel d'une facture
curl --request POST \
  --url https://api.pay.izichange.com/v1/invoices/{id}/send \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "sent": true
}

Autorisations

Authorization
string
header
requis

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Paramètres de chemin

id
string
requis

Identifiant de la facture.

Réponse

Courriel envoyé.

success
boolean
requis

Succès de l'opération.

Exemple:

true

sent
boolean
requis

Confirme que l'email a bien été envoyé.

Exemple:

true