Modify Dunning
Modify the dunning process for the current invoice.
Basic authentication is a simple authentication scheme built into the HTTP protocol. To use it, send your HTTP requests with an Authorization header that contains the word Basic followed by a space and a base64-encoded string username:password.Example: Authorization: Basic ZGVtbzpwQDU1dzByZA==
In: header
Path Parameters
Reference of the invoice
Header Parameters
Set this optional header to the same value for idempotent requests. If the request is repeated with the same idempotency key, the server will return the same response as for the first request. Our servers retain the idempotency key and their result for 24 hours after the initial request, if not defined otherwise in your Abillify contract.
The dunning level at which the dunning should be resumed, if set to Reminder the next operation will be Dunning1 etc. If the dunning level should not be altered, do not send the field. 0 = None, 1 = Reminder, 2 = Dunning 1...
The date that should be used as basis for dunning, interest will be calculated from this date. If not provided the due date of the invoice is used (default behaviour).
dateResponse Body
curl -X POST "https://staging1.abillify.dev/api/invoices/string/modifyDunning" \
-H "Idempotency-Key: string" \
-H "Content-Type: application/json" \
-d '{
"dunninglevel": 1
}'const body = JSON.stringify({
"dunninglevel": 1
})
fetch("https://staging1.abillify.dev/api/invoices/string/modifyDunning", {
headers: {
"Idempotency-Key": "string"
},
body
})package main
import (
"fmt"
"net/http"
"io/ioutil"
"strings"
)
func main() {
url := "https://staging1.abillify.dev/api/invoices/string/modifyDunning"
body := strings.NewReader(`{
"dunninglevel": 1
}`)
req, _ := http.NewRequest("POST", url, body)
req.Header.Add("Idempotency-Key", "string")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}import requests
url = "https://staging1.abillify.dev/api/invoices/string/modifyDunning"
body = {
"dunninglevel": 1
}
response = requests.request("POST", url, json = body, headers = {
"Idempotency-Key": "string",
"Content-Type": "application/json"
})
print(response.text){
"job": "1",
"result": "OK",
"resultcode": "0"
}{
"code": 400,
"details": [
{
"error": "Value for field 'debtor' is of wrong type, expected bigint.",
"fields": [
"debtor"
],
"hint": "Value must be a number or a string containing only a number."
}
],
"message": "InvalidValue, see error details",
"name": "ClientError",
"type": "ERR_INVALID_VALUE"
}{
"code": 400,
"details": [
{
"error": "Value for field 'debtor' is of wrong type, expected bigint.",
"fields": [
"debtor"
],
"hint": "Value must be a number or a string containing only a number."
}
],
"message": "InvalidValue, see error details",
"name": "ClientError",
"type": "ERR_INVALID_VALUE"
}