Neofin V1
english
  • latest
  • english
  1. Listing billings
Neofin V1
english
  • latest
  • english
  • Start your Neofin journey
  • Setup your environment
  • NeofinV1
    • Billing API
      • Upsert a billing
        • How to upsert a billing
        • Upsert a billing
          POST
      • Retrieve a billing
        • How to retrieve a single billing
        • Get billing by Integration Identifier
          GET
        • Get billing by Billing Number
          GET
      • Mark a billing as paid
        • How to mark a billing as paid
        • Mark a billing as paid
          PUT
      • Cancel a billing
        • How to cancel a billing
        • Cancel a billing
          PUT
      • Listing billings
        • How to list your billings
        • Billing by status
          GET
        • Billing by customer
          GET
        • Billing updated date
          GET
        • Billing Events
          GET
        • Billing Events by Integration Identifier
          GET
      • Upload attachments
        • How to upload attachments
        • Upload a Billing NF by Integration Identifier
          PUT
        • Upload a Billing Boleto by Integration Identifier
          PUT
    • Customer API
      • Upserting a customer
        • How to upsert a customer
        • Upsert a customer
          POST
      • Retrieve a customer
        • Get a customer by Integration Identifier
          GET
        • Get a customer by their document
          GET
    • Webhooks
      • How to setup your webhooks
  1. Listing billings

Billing updated date

Sandbox
https://api.sandbox.neofin.services
Sandbox
https://api.sandbox.neofin.services
GET
https://api.sandbox.neofin.services
/billing/updated_at
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sandbox.neofin.services/billing/updated_at?next_page_token=&start_datetime=2025-01-01T00:00:00Z&end_datetime=2025-01-02T00:00:00Z' \
--header 'api-key: ' \
--header 'secret-key: '
Response Response Example
200 - Example 1
{
    "billings": [
        {
            "customer_mail": "string",
            "fine": "string",
            "digest": "string",
            "status": "string",
            "installments": 0,
            "nfe_number": "string",
            "customer_phone": "string",
            "fees": "string",
            "installment_type": "string",
            "billing_number": "string",
            "created_by_name": "string",
            "customer_document": "string",
            "origin": "string",
            "discount_before_payment": "string",
            "integration_identifier": "string",
            "customer_id": "string",
            "due_date": 0,
            "updated_at": 0,
            "issued_at": 0,
            "amount": 0,
            "description": "string",
            "billing_url": "string",
            "discount_before_payment_due_date": 0,
            "customer_name": "string",
            "type": "string"
        }
    ],
    "next_page_token": "string",
    "count": 0
}

Request

Query Params
next_page_token
string 
optional
Page token retrieved by this same request.
start_datetime
string 
optional
ISO Datetime string
Example:
2025-01-01T00:00:00Z
end_datetime
string 
optional
ISO Datetime string
Example:
2025-01-02T00:00:00Z
Header Params
api-key
string 
required
Your Neofin API Key
Example:
{{API_KEY}}
secret-key
string 
required
Your Neofin Secret Key
Example:
{{SECRET_KEY}}

Responses

🟢200Success
application/json
Body
billings
array[object (Billing) {25}] 
required
customer_mail
string 
required
fine
string 
required
digest
string 
required
status
string 
required
installments
integer 
required
nfe_number
string 
required
customer_phone
string 
required
fees
string 
required
installment_type
string 
required
billing_number
string 
required
created_by_name
string 
required
customer_document
string 
required
origin
string 
required
discount_before_payment
string 
required
integration_identifier
string 
required
customer_id
string 
required
due_date
integer 
required
updated_at
integer 
required
issued_at
integer 
required
amount
integer 
required
description
string 
required
billing_url
string 
required
discount_before_payment_due_date
integer 
required
customer_name
string 
required
type
string 
required
next_page_token
string  | null 
optional
count
integer 
required
🟠403Invalid API Keys
Previous
Billing by customer
Next
Billing Events
Built with