Files
rust-mollie-sdk/docs/CustomersApiApi.md
Zomatree e738db98b9 init
2025-10-20 14:41:17 +01:00

11 KiB

\CustomersApiApi

All URIs are relative to https://api.mollie.com/v2

Method HTTP request Description
create_customer POST /customers Create customer
create_customer_payment POST /customers/{customerId}/payments Create customer payment
delete_customer DELETE /customers/{customerId} Delete customer
get_customer GET /customers/{customerId} Get customer
list_customer_payments GET /customers/{customerId}/payments List customer payments
list_customers GET /customers List customers
update_customer PATCH /customers/{customerId} Update customer

create_customer

models::CustomerResponse create_customer(idempotency_key, entity_customer) Create customer

Creates a simple minimal representation of a customer. Payments, recurring mandates, and subscriptions can be linked to this customer object, which simplifies management of recurring payments. Once registered, customers will also appear in your Mollie dashboard.

Parameters

Name Type Description Required Notes
idempotency_key Option<String> A unique key to ensure idempotent requests. This key should be a UUID v4 string.
entity_customer Option<EntityCustomer>

Return type

models::CustomerResponse

Authorization

apiKey, oAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/hal+json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

create_customer_payment

models::PaymentResponse create_customer_payment(customer_id, idempotency_key, payment_request) Create customer payment

Creates a payment for the customer. Linking customers to payments enables you to: * Keep track of payment preferences for your customers * Allow your customers to charge a previously used credit card with a single click in our hosted checkout * Improve payment insights in the Mollie dashboard * Use recurring payments This endpoint is effectively an alias of the Create payment endpoint with the customerId parameter predefined.

Parameters

Name Type Description Required Notes
customer_id String Provide the ID of the related customer. [required]
idempotency_key Option<String> A unique key to ensure idempotent requests. This key should be a UUID v4 string.
payment_request Option<PaymentRequest>

Return type

models::PaymentResponse

Authorization

apiKey, oAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/hal+json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

delete_customer

serde_json::Value delete_customer(customer_id, idempotency_key, delete_webhook_request) Delete customer

Delete a customer. All mandates and subscriptions created for this customer will be canceled as well.

Parameters

Name Type Description Required Notes
customer_id String Provide the ID of the related customer. [required]
idempotency_key Option<String> A unique key to ensure idempotent requests. This key should be a UUID v4 string.
delete_webhook_request Option<DeleteWebhookRequest>

Return type

serde_json::Value

Authorization

apiKey

HTTP request headers

  • Content-Type: application/json
  • Accept: application/hal+json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_customer

models::GetCustomer200Response get_customer(customer_id, include, testmode, idempotency_key) Get customer

Retrieve a single customer by its ID.

Parameters

Name Type Description Required Notes
customer_id String Provide the ID of the related customer. [required]
include Option<String> This endpoint allows you to include additional information via the include query string parameter.
testmode Option<bool> Most API credentials are specifically created for either live mode or test mode. In those cases the testmode query parameter can be omitted. For organization-level credentials such as OAuth access tokens, you can enable test mode by setting the testmode query parameter to true. Test entities cannot be retrieved when the endpoint is set to live mode, and vice versa.
idempotency_key Option<String> A unique key to ensure idempotent requests. This key should be a UUID v4 string.

Return type

models::GetCustomer200Response

Authorization

apiKey

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/hal+json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

list_customer_payments

models::ListSettlementPayments200Response list_customer_payments(customer_id, from, limit, sort, profile_id, testmode, idempotency_key) List customer payments

Retrieve all payments linked to the customer.

Parameters

Name Type Description Required Notes
customer_id String Provide the ID of the related customer. [required]
from Option<String> Provide an ID to start the result set from the item with the given ID and onwards. This allows you to paginate the result set.
limit Option<i32> The maximum number of items to return. Defaults to 50 items.
sort Option<String> Used for setting the direction of the result set. Defaults to descending order, meaning the results are ordered from newest to oldest.
profile_id Option<String> The identifier referring to the profile you wish to retrieve the resources for. Most API credentials are linked to a single profile. In these cases the profileId can be omitted. For organization-level credentials such as OAuth access tokens however, the profileId parameter is required.
testmode Option<bool> Most API credentials are specifically created for either live mode or test mode. In those cases the testmode query parameter can be omitted. For organization-level credentials such as OAuth access tokens, you can enable test mode by setting the testmode query parameter to true. Test entities cannot be retrieved when the endpoint is set to live mode, and vice versa.
idempotency_key Option<String> A unique key to ensure idempotent requests. This key should be a UUID v4 string.

Return type

models::ListSettlementPayments200Response

Authorization

apiKey, oAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/hal+json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

list_customers

models::ListCustomers200Response list_customers(from, limit, sort, testmode, idempotency_key) List customers

Retrieve a list of all customers. The results are paginated.

Parameters

Name Type Description Required Notes
from Option<String> Provide an ID to start the result set from the item with the given ID and onwards. This allows you to paginate the result set.
limit Option<i32> The maximum number of items to return. Defaults to 50 items.
sort Option<String> Used for setting the direction of the result set. Defaults to descending order, meaning the results are ordered from newest to oldest.
testmode Option<bool> Most API credentials are specifically created for either live mode or test mode. In those cases the testmode query parameter can be omitted. For organization-level credentials such as OAuth access tokens, you can enable test mode by setting the testmode query parameter to true. Test entities cannot be retrieved when the endpoint is set to live mode, and vice versa.
idempotency_key Option<String> A unique key to ensure idempotent requests. This key should be a UUID v4 string.

Return type

models::ListCustomers200Response

Authorization

apiKey, oAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/hal+json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

update_customer

models::CustomerResponse update_customer(customer_id, idempotency_key, entity_customer) Update customer

Update an existing customer. For an in-depth explanation of each parameter, refer to the Create customer endpoint.

Parameters

Name Type Description Required Notes
customer_id String Provide the ID of the related customer. [required]
idempotency_key Option<String> A unique key to ensure idempotent requests. This key should be a UUID v4 string.
entity_customer Option<EntityCustomer>

Return type

models::CustomerResponse

Authorization

apiKey

HTTP request headers

  • Content-Type: application/json
  • Accept: application/hal+json

[Back to top] [Back to API list] [Back to Model list] [Back to README]