List customers with pagination
ExpressListPageResponse Express.List(ExpressListParams?parameters, CancellationTokencancellationToken = default)
GET/v1/express
Retrieves a paginated list of customers with optional filtering by name. Returns up to 100 customers per request.
Parameters
Returns
List customers with pagination
ExpressListParams parameters = new();
var page = await client.Express.List(parameters);
await foreach (var item in page.Paginate())
{
Console.WriteLine(item);
}{
"expressCustomers": [
{
"createdAt": "2024-01-15T09:00:00Z",
"expressCustomerId": "cus_1234567890abcdef1234567890abcdef",
"expressCustomerName": "City Medical Center - Radiology Department",
"isActive": true,
"updatedAt": "2024-03-15T14:20:00Z",
"userCount": 15,
"createdByApiKeyId": "550e8400-e29b-41d4-a716-446655440000",
"createdByUserId": "usr_1234567890abcdef1234567890abcdef",
"metadata": {
"department": "radiology",
"region": "northeast"
}
}
],
"hasMore": true,
"cursor": "cursor"
}Returns Examples
{
"expressCustomers": [
{
"createdAt": "2024-01-15T09:00:00Z",
"expressCustomerId": "cus_1234567890abcdef1234567890abcdef",
"expressCustomerName": "City Medical Center - Radiology Department",
"isActive": true,
"updatedAt": "2024-03-15T14:20:00Z",
"userCount": 15,
"createdByApiKeyId": "550e8400-e29b-41d4-a716-446655440000",
"createdByUserId": "usr_1234567890abcdef1234567890abcdef",
"metadata": {
"department": "radiology",
"region": "northeast"
}
}
],
"hasMore": true,
"cursor": "cursor"
}