Customers API
Provides coroutine-based and callback-based methods for managing customers via the Frame API.
Each operation is available in two overloads: a suspend function for use with Kotlin coroutines, and a callback variant for use without coroutines.
Functions
Blocks a customer, preventing them from completing transactions.
Blocks a customer and delivers the result to a callback.
Creates a new customer record.
Creates a new customer record and delivers the result to a callback.
Deletes a customer record by their unique identifier.
Deletes a customer record by their unique identifier and delivers the result to a callback.
Retrieves a paginated list of customers.
Retrieves a paginated list of customers and delivers the result to a callback.
Retrieves a single customer by their unique identifier.
Retrieves a single customer by their unique identifier and delivers the result to a callback.
Searches customers using the criteria specified in the request.
Searches customers using the criteria specified in the request and delivers results to a callback.
Unblocks a previously blocked customer, restoring their ability to transact.
Unblocks a previously blocked customer and delivers the result to a callback.
Updates an existing customer record.
Updates an existing customer record and delivers the result to a callback.