The Credit Note resource represents a credit note that has been generated for a customer. Credit Notes are generated when a customer's billing interval has elapsed, and are updated when a customer's invoice is paid.
- list - List credit notes
This endpoint returns a list of all Credit Note
s for an account in a list format.
The list of credit notes is ordered starting from the most recently created date. The response also includes pagination_metadata
, which lets the caller retrieve the next page of results if they exist.
import orb
from orb.models import operations
s = orb.Orb(
security=shared.Security(
api_key_auth="",
),
)
res = s.credit_note.list('enim', 'odit', 'quo')
if res.credit_notes is not None:
# handle response