Get a customer's audit logs
curl -X GET "https://test-api.kashier.io/v2/customers/audit-logs/string"{ "body": [ { "_id": "string", "customerId": "string", "operation": "string", "actionBy": { "email": "string", "fullName": "string", "userId": "string" }, "updatedFields": [ {} ], "updatedAt": "string" } ], "message": "string"}Retrieves the full audit trail for a customer — every create and edit, which fields changed, and which dashboard user made the change. This is the same data the profile returns under timeLine, retrievable on its own so you can page through a long trail.
Authorization
secretKey Merchant secret key used to identify the merchant, obtained from Kashier's dashboard. Pass the raw secret key value in the Authorization header (NOT a "Bearer" token).
In: header
Path Parameters
The customer's record id.
Query Parameters
Current page number.
Number of records per page.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
Get a customer's payment links GET
Retrieves the payment links created for a single customer — the customer-side view of the Payment links endpoints. Results are paginated.
Export customers GET
Exports the customers matching the given filters. The export is generated asynchronously and delivered to the merchant account's email address, so the response only acknowledges that the request is…