KosmoKrator

data

Checkout.com MCP, CLI, and Lua Integration for AI Agents

Checkout.com integration docs for AI agents: MCP gateway setup, Checkout.com CLI commands, Lua API reference, credentials, and function schemas.

Checkout.com for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Agent Surfaces

Machine-Readable Metadata

Function Catalog

FunctionTypeParametersDescription
checkout-com.checkout_com_retrieve_updated_card_details Read read 1 Retrieve updated card credentials. The following card schemes are supported: - Mastercard - Visa - American Express Official Checkout.com endpoint: POST /account-updater/cards.
checkout-com.checkout_com_onboard_entity Read read 2 Onboard an entity so they can start using Checkout services. Official Checkout.com endpoint: POST /accounts/entities.
checkout-com.checkout_com_get_sub_entity_members Read read 1 Beta Retrieve information on all users of a sub-entity that has been invited through Hosted Onboarding. Only one user can be invited to onboard the sub-entity through Hosted Onboarding. To enable the Hosted Onboarding feature, contact your Account Manager. Official Checkout.com endpoint: GET /accounts/entities/{entityId}/members.
checkout-com.checkout_com_reinvite_sub_entity_members Read read 3 Beta Resend an invitation to the user of a sub-entity. The user will receive another email to continue their Hosted Onboarding application. An invitation can only be resent to the user originally registered to the sub-entity. To enable the Hosted Onboarding feature, contact your Account Manager. Official Checkout.com endpoint: PUT /accounts/entities/{entityId}/members/{userId}.
checkout-com.checkout_com_get_platforms_payment_instrument Read read 2 Retrieve the details of a specific payment instrument used for sub-entity payouts. Official Checkout.com endpoint: GET /accounts/entities/{entityId}/payment-instruments/{id}.
checkout-com.checkout_com_update_platforms_payment_instrument Write write 3 Set an existing payment instrument as default. This will make it the destination instrument when a scheduled payout is made. You can also update the label of a payment instrument. Official Checkout.com endpoint: PATCH /accounts/entities/{entityId}/payment-instruments/{id}.
checkout-com.checkout_com_get_reserve_rule Read read 2 Retrieve the details of a specific reserve rule. Official Checkout.com endpoint: GET /accounts/entities/{entityId}/reserve-rules/{id}.
checkout-com.checkout_com_update_reserve_rule Write write 4 Update an upcoming reserve rule. Only reserve rules that have never been active can be updated. Official Checkout.com endpoint: PUT /accounts/entities/{entityId}/reserve-rules/{id}.
checkout-com.checkout_com_get_entity_details Read read 2 Use this endpoint to retrieve an entity and its full details. Official Checkout.com endpoint: GET /accounts/entities/{id}.
checkout-com.checkout_com_update_entity_details Write write 3 Update an entity. **Note:** when you update a entity we may conduct further due diligence checks when necessary. During these checks, your payment capabilities will remain the same. Official Checkout.com endpoint: PUT /accounts/entities/{id}.
checkout-com.checkout_com_add_platforms_payment_instrument Write write 2 Create a bank account payment instrument for your sub-entity. You can use this payment instrument as a payout destination. Official Checkout.com endpoint: POST /accounts/entities/{id}/payment-instruments.
checkout-com.checkout_com_query_platforms_payment_instruments Read read 2 Fetch all of the payment instruments for a sub-entity. You can filter by `status` to identify `verified` instruments that are ready to be used for Payouts. Official Checkout.com endpoint: GET /accounts/entities/{id}/payment-instruments.
checkout-com.checkout_com_get_sub_entitys_payout_schedule Read read 1 You can schedule when your sub-entities receive their funds using our Platforms solution. Use this endpoint to retrieve information about a sub-entity's schedule. Official Checkout.com endpoint: GET /accounts/entities/{id}/payout-schedules.
checkout-com.checkout_com_put_sub_entitys_payout_schedule Read read 2 You can schedule when your sub-entities receive their funds using our Platforms solution. Use this endpoint to update a sub-entity's schedule. Official Checkout.com endpoint: PUT /accounts/entities/{id}/payout-schedules.
checkout-com.checkout_com_add_reserve_rule Write write 2 Create a sub-entity reserve rule. Official Checkout.com endpoint: POST /accounts/entities/{id}/reserve-rules.
checkout-com.checkout_com_query_reserve_rules Read read 1 Fetch all of the reserve rules for a sub-entity. Official Checkout.com endpoint: GET /accounts/entities/{id}/reserve-rules.
checkout-com.checkout_com_delegate_payment Read read 5 Create a delegated payment token Official Checkout.com endpoint: POST /agentic_commerce/delegate_payment.
checkout-com.checkout_com_create_aml_verification Write write 1 Beta Create an [AML screening](https://www.checkout.com/docs/business-operations/manage-identities/screen-aml-databases). If the request is successful, you receive a `201 Created` response with the AML screening resource. Official Checkout.com endpoint: POST /aml-verifications.
checkout-com.checkout_com_retrieve_aml_screening Read read 1 Get the detailed result of an [AML screening](https://www.checkout.com/docs/business-operations/manage-identities/screen-aml-databases). Official Checkout.com endpoint: GET /aml-verifications/{aml_verification_id}.
checkout-com.checkout_com_upload_apple_pay_certificate Read read 1 Upload a payment processing certificate. This will allow you to start processing payments via Apple Pay. Official Checkout.com endpoint: POST /applepay/certificates.
checkout-com.checkout_com_apple_pay_enroll_merchant Read read 1 Enroll a domain to the Apple Pay Service Official Checkout.com endpoint: POST /applepay/enrollments.
checkout-com.checkout_com_generate_apple_pay_signing_request Read read 1 Generate a certificate signing request. You'll need to upload this to your Apple Developer account to download a payment processing certificate. Official Checkout.com endpoint: POST /applepay/signing-requests.
checkout-com.checkout_com_get_entity_balances Read read 3 Use this endpoint to retrieve balances for each sub-account in an entity. *Note:* The sub-account is referred to as _currency account_ in the API. Official Checkout.com endpoint: GET /balances/{id}.
checkout-com.checkout_com_compliance_requests_get_compliance_request Read read 1 Retrieve an existing compliance request by payment ID. Official Checkout.com endpoint: GET /compliance-requests/{payment_id}.
checkout-com.checkout_com_compliance_requests_submit_compliance_request_response Write write 2 Submit a response to a compliance request. Official Checkout.com endpoint: POST /compliance-requests/{payment_id}.
checkout-com.checkout_com_request_an_access_token Read read 1 OAuth endpoint to exchange your access key ID and access key secret for an access token. Official Checkout.com endpoint: POST /connect/token.
checkout-com.checkout_com_create_customer Write write 1 Store a customer's details in a customer object to reuse in future payments. When creating a customer, you can link payment instruments – the customer `id` returned can be passed as a source when making a payment. **NOTE:** Specify a `default` instrument, otherwise the `instruments` array will not be saved on creation. Official Checkout.com endpoint: POST /customers.
checkout-com.checkout_com_get_customer_details Read read 1 Returns the details of a customer and their payment instruments. Official Checkout.com endpoint: GET /customers/{identifier}.
checkout-com.checkout_com_update_customer_details Write write 2 Update the details of a customer and link payment instruments to them. Official Checkout.com endpoint: PATCH /customers/{identifier}.
checkout-com.checkout_com_delete_customer Write write 1 Delete a customer and all of their linked payment instruments. Official Checkout.com endpoint: DELETE /customers/{identifier}.
checkout-com.checkout_com_get_disputes Read read 15 Returns a list of all disputes against your business. The results will be returned in reverse chronological order, showing the last modified dispute (for example, where you've recently added a piece of evidence) first. You can use the optional parameters below to skip or limit results. Official Checkout.com endpoint: GET /disputes.
checkout-com.checkout_com_get_dispute_details Read read 1 Returns all the details of a dispute using the dispute identifier. Official Checkout.com endpoint: GET /disputes/{dispute_id}.
checkout-com.checkout_com_accept_dispute Read read 2 If a dispute is legitimate, you can choose to accept it. This will close it for you and remove it from your list of open disputes. There are no further financial implications. Official Checkout.com endpoint: POST /disputes/{dispute_id}/accept.
checkout-com.checkout_com_provide_dispute_evidence Read read 2 Provide dispute evidence Official Checkout.com endpoint: PUT /disputes/{dispute_id}/evidence.
checkout-com.checkout_com_get_dispute_evidence Read read 1 Retrieves a list of the evidence submitted in response to a specific dispute. Official Checkout.com endpoint: GET /disputes/{dispute_id}/evidence.
checkout-com.checkout_com_submit_dispute_evidence Write write 2 With this final request, you can submit the evidence that you have previously provided. Make sure you have provided all the relevant information before using this request. You will not be able to amend your evidence once you have submitted it. Official Checkout.com endpoint: POST /disputes/{dispute_id}/evidence.
checkout-com.checkout_com_submit_dispute_arbitration_evidence Write write 2 Submits the previously provided arbitration evidence to the scheme. You cannot amend evidence after you submit with this endpoint. Ensure you have provided all of the required information. Official Checkout.com endpoint: POST /disputes/{dispute_id}/evidence/arbitration.
checkout-com.checkout_com_get_dispute_submitted_arbitration_evidence Read read 1 Retrieves the unique identifier of the PDF file containing all of the evidence submitted to escalate the dispute to arbitration. To retrieve the file's download link, call the `GET /files/{file_id}` [endpoint](https://api-reference.checkout.com/#operation/getFileInformation) with the returned file ID. Official Checkout.com endpoint: GET /disputes/{dispute_id}/evidence/arbitration/submitted.
checkout-com.checkout_com_get_dispute_submitted_evidence Read read 1 Retrieves the unique identifier of the PDF file containing all the evidence submitted to represent the dispute case. To retrieve the file's download link, call the `GET /files/{file_id}` [endpoint](https://api-reference.checkout.com/#operation/getFileInformation) with the returned file ID. Evidence submitted before February 2024 cannot be retrieved using this endpoint. Official Checkout.com endpoint: GET /disputes/{dispute_id}/evidence/submitted.
checkout-com.checkout_com_get_dispute_scheme_files Read read 1 Returns all of the scheme files of a dispute using the dispute identifier. Currently available only for VISA disputes. Official Checkout.com endpoint: GET /disputes/{dispute_id}/schemefiles.
checkout-com.checkout_com_upload_a_file Read read 2 Upload a file Official Checkout.com endpoint: POST /entities/{entityId}/files.
checkout-com.checkout_com_retrieve_a_file Read read 2 Retrieve information about a previously uploaded file. Please note that the sub-domain – https://files.checkout.com – is slightly different to Checkout.com's other endpoints. See the documentation for more information. Official Checkout.com endpoint: GET /entities/{entityId}/files/{fileId}.
checkout-com.checkout_com_create_face_authentication Write write 1 Create a face authentication Official Checkout.com endpoint: POST /face-authentications.
checkout-com.checkout_com_retrieve_face_authentication Read read 1 Beta Get the details of a [face authentication](https://www.checkout.com/docs/business-operations/manage-identities/authenticate-with-biometrics). Official Checkout.com endpoint: GET /face-authentications/{face_authentication_id}.
checkout-com.checkout_com_anonymize_face_authentication Read read 2 Beta Remove the personal data in a [face authentication](https://www.checkout.com/docs/business-operations/manage-identities/authenticate-with-biometrics). Official Checkout.com endpoint: POST /face-authentications/{face_authentication_id}/anonymize.
checkout-com.checkout_com_create_fav_attempt Write write 2 Create a face authentication attempt Official Checkout.com endpoint: POST /face-authentications/{face_authentication_id}/attempts.
checkout-com.checkout_com_list_fav_attempts Read read 1 Beta Get the details of all attempts for a specific [face authentication](https://www.checkout.com/docs/business-operations/manage-identities/authenticate-with-biometrics). Official Checkout.com endpoint: GET /face-authentications/{face_authentication_id}/attempts.
checkout-com.checkout_com_get_fav_attempt Read read 2 Beta Get the details of a specific attempt for a [face authentication](https://www.checkout.com/docs/business-operations/manage-identities/authenticate-with-biometrics). Official Checkout.com endpoint: GET /face-authentications/{face_authentication_id}/attempts/{attempt_id}.
checkout-com.checkout_com_upload_file Read read 1 Upload a file to use as evidence in a dispute. Your file must be in either JPEG/JPG, PNG or PDF format, and be no larger than 4MB. Official Checkout.com endpoint: POST /files.
checkout-com.checkout_com_get_file_information Read read 1 Retrieve information about a file that was previously uploaded. Official Checkout.com endpoint: GET /files/{file_id}.
checkout-com.checkout_com_get_financial_actions Read read 4 Returns the list of financial actions and their details. Official Checkout.com endpoint: GET /financial-actions.
checkout-com.checkout_com_get_all_workflows Read read 0 Get all workflows Official Checkout.com endpoint: GET /workflows.
checkout-com.checkout_com_add_workflow Write write 1 Add a new workflow Official Checkout.com endpoint: POST /workflows.
checkout-com.checkout_com_get_workflow Read read 1 Get the details of a workflow Official Checkout.com endpoint: GET /workflows/{workflowId}.
checkout-com.checkout_com_remove_workflow Write write 1 Removes a workflow so it is no longer being executed. Actions of already executed workflows will be still processed. Official Checkout.com endpoint: DELETE /workflows/{workflowId}.
checkout-com.checkout_com_patch_workflow Read read 2 Update a workflow. Official Checkout.com endpoint: PATCH /workflows/{workflowId}.
checkout-com.checkout_com_add_workflow_action Write write 2 Adds a workflow action. Actions determine what the workflow will do when it is triggered. Official Checkout.com endpoint: POST /workflows/{workflowId}/actions.
checkout-com.checkout_com_update_workflow_action Write write 3 Update a workflow action. Official Checkout.com endpoint: PUT /workflows/{workflowId}/actions/{workflowActionId}.
checkout-com.checkout_com_remove_workflow_action Write write 2 Removes a workflow action. Actions determine what the workflow will do when it is triggered. Official Checkout.com endpoint: DELETE /workflows/{workflowId}/actions/{workflowActionId}.
checkout-com.checkout_com_add_workflow_condition Write write 2 Adds a workflow condition. Conditions determine when the workflow will trigger. Official Checkout.com endpoint: POST /workflows/{workflowId}/conditions.
checkout-com.checkout_com_update_workflow_condition Write write 3 Update a workflow condition. Official Checkout.com endpoint: PUT /workflows/{workflowId}/conditions/{workflowConditionId}.
checkout-com.checkout_com_remove_workflow_condition Write write 2 Removes a workflow condition. Conditions determine when the workflow will trigger. Official Checkout.com endpoint: DELETE /workflows/{workflowId}/conditions/{workflowConditionId}.
checkout-com.checkout_com_test_workflow Write write 2 Validate a workflow in our Sandbox environment. Official Checkout.com endpoint: POST /workflows/{workflowId}/test.
checkout-com.checkout_com_get_event_types Read read 0 Get a list of sources and their events for building new workflows Official Checkout.com endpoint: GET /workflows/event-types.
checkout-com.checkout_com_get_workflow_event Read read 1 Get the details of an event Official Checkout.com endpoint: GET /workflows/events/{eventId}.
checkout-com.checkout_com_get_workflow_action_invocations Read read 2 Get the details of a workflow action executed for the specified event. Official Checkout.com endpoint: GET /workflows/events/{eventId}/actions/{workflowActionId}.
checkout-com.checkout_com_reflow_by_event Read read 2 Reflows a past event denoted by the event ID and triggers the actions of any workflows with matching conditions. Official Checkout.com endpoint: POST /workflows/events/{eventId}/reflow.
checkout-com.checkout_com_reflow_by_event_and_workflow Read read 3 Reflows a past event by event ID and workflow ID. Triggers all the actions of a specific event and workflow combination if the event denoted by the event ID matches the workflow conditions. Official Checkout.com endpoint: POST /workflows/events/{eventId}/workflow/{workflowId}/reflow.
checkout-com.checkout_com_reflow_events Read read 1 Reflow past events attached to multiple event IDs and workflow IDs, or to multiple subject IDs and workflow IDs. If you don't specify any workflow IDs, all matching workflows will be retriggered. Official Checkout.com endpoint: POST /workflows/events/reflow.
checkout-com.checkout_com_get_subject_events Read read 1 Get all events that relate to a specific subject Official Checkout.com endpoint: GET /workflows/events/subject/{subjectId}.
checkout-com.checkout_com_reflow_by_subject Read read 2 Reflows the events associated with a subject ID (for example, a payment ID or a dispute ID) and triggers the actions of any workflows with matching conditions. Official Checkout.com endpoint: POST /workflows/events/subject/{subjectId}/reflow.
checkout-com.checkout_com_reflow_by_subject_and_workflow Read read 3 Reflows the events associated with a subject ID (for example, a payment ID or a dispute ID) and triggers the actions of the specified workflow if the conditions match. Official Checkout.com endpoint: POST /workflows/events/subject/{subjectId}/workflow/{workflowId}/reflow.
checkout-com.checkout_com_get_fx_rates Read read 4 Get the indicative foreign exchange (FX) rates that Checkout.com uses to process payments for the following products: - Card Payouts - Daily acquiring >Note: Ensure that you have the relevant product enabled for your account. Otherwise, you receive a `403 Forbidden` error response. Official Checkout.com endpoint: GET /forex/rates.
checkout-com.checkout_com_forward_request Write write 1 Beta Forwards an API request to a third-party endpoint. For example, you can forward payment credentials you've stored in our Vault to a third-party payment processor. Official Checkout.com endpoint: POST /forward.
checkout-com.checkout_com_get_forward_request Write write 1 Retrieve the details of a successfully forwarded API request. The details can be retrieved for up to 14 days after the request was initiated. Official Checkout.com endpoint: GET /forward/{id}.
checkout-com.checkout_com_create_secret Write write 1 Create a new secret with a plaintext value. **Validation Rules:** - `name`: 1-64 characters, alphanumeric + underscore - `value`: max 8KB - `entity_id` (optional): when provided, secret is scoped to this entity **Response:** Returns metadata. Official Checkout.com endpoint: POST /forward/secrets.
checkout-com.checkout_com_list_secrets Read read 0 Returns metadata for secrets scoped for client_id. Official Checkout.com endpoint: GET /forward/secrets.
checkout-com.checkout_com_update_secret Write write 2 Update an existing secret. After updating, the version is automatically incremented. **Validation Rules:** - Only `value` and `entity_id` can be updated - `value`: max 8KB **Response:** Returns updated metadata with incremented version. Official Checkout.com endpoint: PATCH /forward/secrets/{name}.
checkout-com.checkout_com_delete_secret Write write 1 Permanently delete a secret by name. Official Checkout.com endpoint: DELETE /forward/secrets/{name}.
checkout-com.checkout_com_google_pay_enroll_merchant Read read 1 Enroll an entity to the Google Pay Service. You must accept the Google terms of service to use this feature. Official Checkout.com endpoint: POST /googlepay/enrollments.
checkout-com.checkout_com_google_pay_register_domain Read read 2 Associates a web domain with the specified enrolled entity. Official Checkout.com endpoint: POST /googlepay/enrollments/{entity_id}/domain.
checkout-com.checkout_com_google_pay_get_registered_domains Read read 1 Retrieves all web domains registered for the specified entity. Official Checkout.com endpoint: GET /googlepay/enrollments/{entity_id}/domains.
checkout-com.checkout_com_google_pay_get_enrollment_state Read read 1 Returns the current enrollment state of an entity. Official Checkout.com endpoint: GET /googlepay/enrollments/{entity_id}/state.
checkout-com.checkout_com_create_a_hosted_payments_session Write write 1 Create a Hosted Payments Page session and pass through all the payment information, like the amount, currency, country and reference. To get started with our Hosted Payments Page, contact your solutions engineer or request support. Official Checkout.com endpoint: POST /hosted-payments.
checkout-com.checkout_com_get_hosted_payments_page_details Read read 1 Retrieve details about a specific Hosted Payments Page using the ID returned when it was created. In the response, you will see the status of the Hosted Payments Page. For more information, see the Hosted Payments Page documentation. Official Checkout.com endpoint: GET /hosted-payments/{id}.
checkout-com.checkout_com_create_id_document_verification Write write 1 Beta Create an [ID document verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-id-documents) for an applicant. Ensure you use your ID Document Verification [configuration ID](https://www.checkout.com/docs/business-operations/manage-identities/verify-id-documents#Configuration). Official Checkout.com endpoint: POST /id-document-verifications.
checkout-com.checkout_com_retrieve_id_document_verification Read read 1 Beta Get the details of an existing [ID document verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-id-documents). Official Checkout.com endpoint: GET /id-document-verifications/{id_document_verification_id}.
checkout-com.checkout_com_anonymize_id_document_verification Read read 2 Beta Remove the personal data from an [ID document verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-id-documents). Official Checkout.com endpoint: POST /id-document-verifications/{id_document_verification_id}/anonymize.
checkout-com.checkout_com_create_id_document_verification_attempt Write write 2 Create an ID document verification attempt Official Checkout.com endpoint: POST /id-document-verifications/{id_document_verification_id}/attempts.
checkout-com.checkout_com_list_attempts_id_document_verification Read read 1 Beta Get the details of all attempts for a specific [ID document verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-id-documents). Official Checkout.com endpoint: GET /id-document-verifications/{id_document_verification_id}/attempts.
checkout-com.checkout_com_get_id_document_verification_attempt Read read 2 Beta Get the details of a specific attempt for an [ID document verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-id-documents). Official Checkout.com endpoint: GET /id-document-verifications/{id_document_verification_id}/attempts/{attempt_id}.
checkout-com.checkout_com_pdf_id_document_verification Read read 1 Get ID document verification report Official Checkout.com endpoint: GET /id-document-verifications/{id_document_verification_id}/pdf-report.
checkout-com.checkout_com_create_applicant Write write 1 Create a profile for an [Identities applicant](https://www.checkout.com/docs/business-operations/manage-identities/manage-applicants). Official Checkout.com endpoint: POST /applicants.
checkout-com.checkout_com_retrieve_applicant Read read 1 Get the details of an [applicant profile](https://www.checkout.com/docs/business-operations/manage-identities/manage-applicants). Official Checkout.com endpoint: GET /applicants/{applicant_id}.
checkout-com.checkout_com_update_applicant Write write 2 Update the details of an [applicant profile](https://www.checkout.com/docs/business-operations/manage-identities/manage-applicants). Official Checkout.com endpoint: PATCH /applicants/{applicant_id}.
checkout-com.checkout_com_anonymize_applicant Read read 2 Remove the personal data in an [applicant profile](https://www.checkout.com/docs/business-operations/manage-identities/manage-applicants). Official Checkout.com endpoint: POST /applicants/{applicant_id}/anonymize.
checkout-com.checkout_com_create_and_start_identity_verification Write write 1 Create an identity verification and attempt Official Checkout.com endpoint: POST /create-and-open-idv.
checkout-com.checkout_com_create_identity_verification Write write 1 Beta Create an [identity verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-identities) linked to an applicant. If successful, you receive a `201 Created` response with the identity verification resource. Ensure you use your identity verification [configuration ID](https://www.checkout.com/docs/business-operations/manage-identities/verify-identities#Configuration). Official Checkout.com endpoint: POST /identity-verifications.
checkout-com.checkout_com_retrieve_identity_verification Read read 1 Beta Get the details of an existing [identity verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-identities). Official Checkout.com endpoint: GET /identity-verifications/{identity_verification_id}.
checkout-com.checkout_com_anonymize_identity_verification Read read 2 Beta Remove the personal data in an [identity verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-identities). Official Checkout.com endpoint: POST /identity-verifications/{identity_verification_id}/anonymize.
checkout-com.checkout_com_create_attempt Write write 2 Create an identity verification attempt Official Checkout.com endpoint: POST /identity-verifications/{identity_verification_id}/attempts.
checkout-com.checkout_com_list_attempts Read read 1 Beta Get all the attempts for a specific [identity verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-identities). Official Checkout.com endpoint: GET /identity-verifications/{identity_verification_id}/attempts.
checkout-com.checkout_com_get_attempt Read read 2 Beta Get the details of a specific attempt for an [identity verification](https://www.checkout.com/docs/business-operations/manage-identities/verify-identities). Official Checkout.com endpoint: GET /identity-verifications/{identity_verification_id}/attempts/{attempt_id}.
checkout-com.checkout_com_pdf_identity_verification Read read 1 Get identity verification report Official Checkout.com endpoint: GET /identity-verifications/{identity_verification_id}/pdf-report.
checkout-com.checkout_com_create_an_instrument Write write 1 Create a payment instrument like card, bank, ach or sepa to use for future payments and payouts. The parameters you need to provide when creating a bank account payment instrument depend on the account's country and currency. See the payout formatting documentation, or use the `GET /validation/bank-accounts/{country}/{currency}` endpoint. Official Checkout.com endpoint: POST /instruments.
checkout-com.checkout_com_get_instrument_details Read read 1 Retrieve the details of a payment instrument. Official Checkout.com endpoint: GET /instruments/{id}.
checkout-com.checkout_com_update_instrument Write write 2 Update the details of a payment instrument. Official Checkout.com endpoint: PATCH /instruments/{id}.
checkout-com.checkout_com_delete_instrument Write write 1 Delete a payment instrument. Official Checkout.com endpoint: DELETE /instruments/{id}.
checkout-com.checkout_com_request_cardholder_access_token Read read 1 OAuth endpoint to exchange your access key ID and access key secret for an access token. Official Checkout.com endpoint: POST /issuing/access/connect/token.
checkout-com.checkout_com_create_cardholder Write write 1 Create a new cardholder that you can issue a card to at a later point. Official Checkout.com endpoint: POST /issuing/cardholders.
checkout-com.checkout_com_get_cardholder Read read 1 Retrieve the details for a cardholder you created previously. Official Checkout.com endpoint: GET /issuing/cardholders/{cardholderId}.
checkout-com.checkout_com_update_cardholder Write write 2 Updates the details of an existing cardholder. Official Checkout.com endpoint: PATCH /issuing/cardholders/{cardholderId}.
checkout-com.checkout_com_get_cardholder_cards Read read 2 Retrieves the cards issued to the specified cardholder. Card credentials are not returned in the response. The response is limited to a maximum of 150 cards. Official Checkout.com endpoint: GET /issuing/cardholders/{cardholderId}/cards.
checkout-com.checkout_com_create_card Write write 2 Creates a physical or virtual card and issues it to the specified cardholder. Official Checkout.com endpoint: POST /issuing/cards.
checkout-com.checkout_com_get_card Read read 1 Retrieves the details for a card you issued previously. The card's credentials are not returned in the response. Official Checkout.com endpoint: GET /issuing/cards/{cardId}.
checkout-com.checkout_com_update_card Write write 2 Update the details of an issued card. Only the fields for which you provide values will be updated. If you pass `null`, the existing value will be removed. Official Checkout.com endpoint: PATCH /issuing/cards/{cardId}.
checkout-com.checkout_com_enroll_card Read read 2 Enrolls a card in 3D Secure (3DS). Additional information is requested from the cardholder through a 3DS challenge when performing a transaction. Two-factor authentication (2FA) is supported. For maximum security, we recommend using a combination of a one-time password (OTP) sent via SMS, along with a password or question and answer security pair. Official Checkout.com endpoint: POST /issuing/cards/{cardId}/3ds-enrollment.
checkout-com.checkout_com_update_card_enrollment_details Write write 2 Updates a card's 3DS enrollment details. At least one of the fields is required. Official Checkout.com endpoint: PATCH /issuing/cards/{cardId}/3ds-enrollment.
checkout-com.checkout_com_get_card_enrollment_details Read read 1 Retrieves a card's 3DS enrollment details. Official Checkout.com endpoint: GET /issuing/cards/{cardId}/3ds-enrollment.
checkout-com.checkout_com_activate_card Write write 2 Activates an `inactive` or `suspended` card so that incoming authorizations can be approved. Activating a renewed card will schedule the parent card for revocation the following day, and transfer all configurations to the newly activated card. This includes 3DS enrollment, card controls, control profiles and tokenisation. Official Checkout.com endpoint: POST /issuing/cards/{cardId}/activate.
checkout-com.checkout_com_get_card_credentials Read read 2 Retrieves the credentials for a card you issued previously. Official Checkout.com endpoint: GET /issuing/cards/{cardId}/credentials.
checkout-com.checkout_com_renew_card Read read 2 Renew a card Official Checkout.com endpoint: POST /issuing/cards/{cardId}/renew.
checkout-com.checkout_com_revoke_card Read read 2 Revokes an `inactive`, `active`, or `suspended` card to permanently decline all incoming authorizations. This is a permanent action. Revoked cards cannot be reactivated. Official Checkout.com endpoint: POST /issuing/cards/{cardId}/revoke.
checkout-com.checkout_com_add_scheduled_revocation_date Write write 2 Schedules a card to be revoked at 00:00(UTC) on a specified date. Official Checkout.com endpoint: POST /issuing/cards/{cardId}/schedule-revocation.
checkout-com.checkout_com_delete_scheduled_revocation_date Write write 1 Delete a card's scheduled revocation. Official Checkout.com endpoint: DELETE /issuing/cards/{cardId}/schedule-revocation.
checkout-com.checkout_com_suspend_card Read read 2 Suspends an `active` or `inactive` card to temporarily decline all incoming authorizations. A `suspended` card can be reactivated. Official Checkout.com endpoint: POST /issuing/cards/{cardId}/suspend.
checkout-com.checkout_com_create_control Write write 2 Creates a control and applies it to the specified target. Official Checkout.com endpoint: POST /issuing/controls.
checkout-com.checkout_com_get_control_by_target Read read 1 Retrieves a list of spending controls applied to the specified target. Official Checkout.com endpoint: GET /issuing/controls.
checkout-com.checkout_com_get_control Read read 2 Retrieves the details of an existing control. Official Checkout.com endpoint: GET /issuing/controls/{controlId}.
checkout-com.checkout_com_update_control Write write 2 Updates an existing control. Official Checkout.com endpoint: PUT /issuing/controls/{controlId}.
checkout-com.checkout_com_delete_control Write write 1 Removes an existing control from the target it was applied to. If you want to reapply an equivalent control to the target, you must create a new control. Official Checkout.com endpoint: DELETE /issuing/controls/{controlId}.
checkout-com.checkout_com_create_control_group Write write 1 Creates a control group and applies it to the specified target. Official Checkout.com endpoint: POST /issuing/controls/control-groups.
checkout-com.checkout_com_get_control_group_by_target Read read 1 Retrieves a list of control groups applied to the specified target. Official Checkout.com endpoint: GET /issuing/controls/control-groups.
checkout-com.checkout_com_get_control_group Read read 1 Retrieves the details of a control group you created previously. Official Checkout.com endpoint: GET /issuing/controls/control-groups/{controlGroupId}.
checkout-com.checkout_com_delete_control_group Write write 1 Removes the control group and all the controls it contains. If you want to reapply an equivalent control group to the card, you'll need to create a new control group. Official Checkout.com endpoint: DELETE /issuing/controls/control-groups/{controlGroupId}.
checkout-com.checkout_com_create_control_profile Write write 1 Creates a control profile. Official Checkout.com endpoint: POST /issuing/controls/control-profiles.
checkout-com.checkout_com_get_control_profiles_by_target Read read 1 Retrieves a list of control profiles for the currently authenticated client, or for a specific card if a card ID is provided. Official Checkout.com endpoint: GET /issuing/controls/control-profiles.
checkout-com.checkout_com_get_control_profile Read read 1 Retrieves the details of an existing control profile. Official Checkout.com endpoint: GET /issuing/controls/control-profiles/{controlProfileId}.
checkout-com.checkout_com_update_control_profile Write write 2 Update the control profile Official Checkout.com endpoint: PATCH /issuing/controls/control-profiles/{controlProfileId}.
checkout-com.checkout_com_delete_control_profile Write write 1 Removes the control profile. A control profile cannot be removed if it is used by a control. Official Checkout.com endpoint: DELETE /issuing/controls/control-profiles/{controlProfileId}.
checkout-com.checkout_com_add_target_to_control_profile Write write 3 Adds a target to an existing control profile. Official Checkout.com endpoint: POST /issuing/controls/control-profiles/{controlProfileId}/add/{targetId}.
checkout-com.checkout_com_remove_target_from_control_profile Write write 3 Removes a target from an existing control profile. Official Checkout.com endpoint: POST /issuing/controls/control-profiles/{controlProfileId}/remove/{targetId}.
checkout-com.checkout_com_get_digital_card Read read 1 Retrieves the details for a digital card. Official Checkout.com endpoint: GET /issuing/digital-cards/{digitalCardId}.
checkout-com.checkout_com_create_dispute Write write 2 Beta Create a dispute for an Issuing transaction. For full guidance, see [Manage Issuing disputes](https://www.checkout.com/docs/card-issuing/manage-cardholder-transactions/manage-issuing-disputes). The transaction must already be cleared and not refunded. For the card scheme to process the chargeback, you must submit the dispute using this endpoint. Official Checkout.com endpoint: POST /issuing/disputes.
checkout-com.checkout_com_get_dispute Read read 1 Beta Retrieve the details of an [Issuing dispute](https://www.checkout.com/docs/card-issuing/manage-cardholder-transactions/manage-issuing-disputes). Official Checkout.com endpoint: GET /issuing/disputes/{disputeId}.
checkout-com.checkout_com_cancel_dispute Write write 3 Beta Cancel an [Issuing dispute](https://www.checkout.com/docs/card-issuing/manage-cardholder-transactions/manage-issuing-disputes). If you decide not to proceed with a dispute, you can cancel it either: * Before you submit it * While the dispute `status` is `processing` and `status_reason` is `chargeback_pending` or `chargeback_processed` For more information, see Cancel a dispute. Official Checkout.com endpoint: POST /issuing/disputes/{disputeId}/cancel.
checkout-com.checkout_com_escalate_dispute Read read 3 Beta Escalate an [Issuing dispute](https://www.checkout.com/docs/card-issuing/manage-cardholder-transactions/manage-issuing-disputes) to pre-arbitration or arbitration. Official Checkout.com endpoint: POST /issuing/disputes/{disputeId}/escalate.
checkout-com.checkout_com_simulate_authorization Read read 1 Simulate an authorization request with a card you issued previously. Official Checkout.com endpoint: POST /issuing/simulate/authorizations.
checkout-com.checkout_com_simulate_incremental_authorization Read read 2 Simulate an incremental authorization request for an existing approved transaction. Incremental authorizations increase the total authorized amount of the transaction. For example, adding a restaurant bill to an existing hotel booking. Official Checkout.com endpoint: POST /issuing/simulate/authorizations/{id}/authorizations.
checkout-com.checkout_com_simulate_presentment Read read 2 Simulate the clearing of an existing approved authorization. Official Checkout.com endpoint: POST /issuing/simulate/authorizations/{id}/presentments.
checkout-com.checkout_com_simulate_refund Read read 2 Simulate the refund of an existing approved authorization, after it has been cleared. Official Checkout.com endpoint: POST /issuing/simulate/authorizations/{id}/refunds.
checkout-com.checkout_com_simulate_reversal Read read 2 Simulate the reversal of an existing approved authorization. Official Checkout.com endpoint: POST /issuing/simulate/authorizations/{id}/reversals.
checkout-com.checkout_com_simulate_oob_authentication Read read 1 Simulate a request to your back-end from an out-of-band (OOB) authentication provider. Official Checkout.com endpoint: POST /issuing/simulate/oob/authentication.
checkout-com.checkout_com_get_transactions Read read 8 Beta Returns a list of transactions based on the matching input parameters in reverse chronological order, with the most recent transactions shown first. Official Checkout.com endpoint: GET /issuing/transactions.
checkout-com.checkout_com_get_transaction_by_id Read read 1 Beta Get the details of a transaction using its ID. Official Checkout.com endpoint: GET /issuing/transactions/{transactionId}.
checkout-com.checkout_com_request_card_metadata Read read 1 Beta Returns a single metadata record for the card specified by the Primary Account Number (PAN), Bank Identification Number (BIN), token, or instrument supplied. Official Checkout.com endpoint: POST /metadata/card.
checkout-com.checkout_com_provision_network_token Read read 1 Beta Provisions a network token synchronously. If the merchant stores their cards with Checkout.com, then source ID can be used to request a network token for the given card. If the merchant does not store their cards with Checkout.com, then card details have to be provided. Official Checkout.com endpoint: POST /network-tokens.
checkout-com.checkout_com_get_network_token Read read 1 Beta Given network token ID, this endpoint returns network token details: DPAN, expiry date, state, TRID and also card details like last four and expiry date. Official Checkout.com endpoint: GET /network-tokens/{network_token_id}.
checkout-com.checkout_com_provision_cryptogram Read read 2 Beta Using network token ID as an input, this endpoint returns token cryptogram. Official Checkout.com endpoint: POST /network-tokens/{network_token_id}/cryptograms.
checkout-com.checkout_com_delete_network_token Write write 2 Beta This endpoint is for permanently deleting a network token. A network token should be deleted when a payment instrument it is associated with is removed from file or if the security of the token has been compromised. Official Checkout.com endpoint: PATCH /network-tokens/{network_token_id}/delete.
checkout-com.checkout_com_request_a_payment_context Read read 2 Send a Payment Context request.Note: Successful Payment Context requests will always return a 201 response. Official Checkout.com endpoint: POST /payment-contexts.
checkout-com.checkout_com_get_payment_context Read read 1 Returns all the Payment Context details. Official Checkout.com endpoint: GET /payment-contexts/{id}.
checkout-com.checkout_com_create_a_payment_link_session Write write 1 Create a Payment Link and pass through all the payment information, like the amount, currency, country and reference. Official Checkout.com endpoint: POST /payment-links.
checkout-com.checkout_com_get_payment_link_details Read read 1 Retrieve details about a specific Payment Link using its ID returned when the link was created. In the response, you will see the status of the Payment Link. For more information, see the Payment Links documentation. Official Checkout.com endpoint: GET /payment-links/{id}.
checkout-com.checkout_com_get_payment_methods Read read 1 Beta Get a list of all available payment methods for a specific Processing Channel ID. Official Checkout.com endpoint: GET /payment-methods.
checkout-com.checkout_com_create_payment_session Write write 1 Creates a payment session. The values you provide in the request will be used to determine the payment methods available to Flow. Some payment methods may require you to provide specific values for certain fields. Refer to our documentation for more information. You must supply the unmodified response body when you initialize Flow. Official Checkout.com endpoint: POST /payment-sessions.
checkout-com.checkout_com_submit_payment_session Write write 2 Submit a payment attempt for a payment session. This request works with the Flow handleSubmit callback, where you can perform a customized payment submission. You must send the unmodified response body as the response of the `handleSubmit` callback. Official Checkout.com endpoint: POST /payment-sessions/{id}/submit.
checkout-com.checkout_com_create_and_submit_payment_session Write write 1 Request a Payment Session with Payment Official Checkout.com endpoint: POST /payment-sessions/complete.
checkout-com.checkout_com_request_a_payment_or_payout Read read 2 Send a payment or payout.Note: successful payout requests will always return a 202 response. Official Checkout.com endpoint: POST /payments.
checkout-com.checkout_com_get_payments_list Read read 3 Beta Returns a list of your business' payments that match the specified reference. Results are returned in reverse chronological order, with the most recent payments shown first. This will only return payments initiated from June 2022 onwards. Payments initiated before this date may return a `404` error code if you attempt to retrieve them. Official Checkout.com endpoint: GET /payments.
checkout-com.checkout_com_get_payment_details Read read 1 Returns the details of the payment with the specified identifier string. If the payment method requires a redirection to a third party (e.g., 3D Secure), the redirect URL back to your site will include a `cko-session-id` query parameter containing a payment session ID that can be used to obtain the details of the payment, for example: https://example.com/success?cko-session-id=sid_ubfj2q76miwundwlk72vxt2i7q. Official Checkout.com endpoint: GET /payments/{id}.
checkout-com.checkout_com_get_payment_actions Read read 1 Returns all the actions associated with a payment ordered by processing date in descending order (latest first). Official Checkout.com endpoint: GET /payments/{id}/actions.
checkout-com.checkout_com_increment_payment_authorization Read read 3 Request an incremental authorization to increase the authorization amount or extend the authorization's validity period. Official Checkout.com endpoint: POST /payments/{id}/authorizations.
checkout-com.checkout_com_cancel_a_payment Write write 3 Cancels an upcoming retry, if there is one scheduled Cancellation requests are processed asynchronously. You can use [workflows](#tag/Workflows) to be notified if the cancellation is successful. Official Checkout.com endpoint: POST /payments/{id}/cancellations.
checkout-com.checkout_com_capture_a_payment Read read 3 Captures a payment if supported by the payment method. For card payments, capture requests are processed asynchronously. You can use [workflows](#tag/Workflows) to be notified if the capture is successful. Official Checkout.com endpoint: POST /payments/{id}/captures.
checkout-com.checkout_com_refund_a_payment Read read 3 Refunds a payment if supported by the payment method. For card payments, refund requests are processed asynchronously. You can use [workflows](#tag/Workflows) to be notified if the refund is successful. Official Checkout.com endpoint: POST /payments/{id}/refunds.
checkout-com.checkout_com_reverse_payment Read read 3 Returns funds back to the customer by automatically performing the appropriate payment action depending on the payment's status. For more information, see Reverse a payment. Official Checkout.com endpoint: POST /payments/{id}/reversals.
checkout-com.checkout_com_void_a_payment Read read 3 Voids a payment if supported by the payment method. For card payments, void requests are processed asynchronously. You can use [workflows](#tag/Workflows) to be notified if the void is successful. Official Checkout.com endpoint: POST /payments/{id}/voids.
checkout-com.checkout_com_search Read read 1 Beta Search and filter through your payment data to retrieve payments that match your query. If a search returns more results than the value specified in `limit`, additional results are returned in a new page. A link to the next page of results is returned in the response's `_links.next.href` field. For more information on search syntax, see the Search and filter payments documentation. Official Checkout.com endpoint: POST /payments/search.
checkout-com.checkout_com_create_a_payment_setup Write write 1 Beta Creates a Payment Setup. To maximize the information available to the payment setup, create a Payment Setup as early as possible in the customer's journey. For example, create it the first time they land on the basket page. Official Checkout.com endpoint: POST /payments/setups.
checkout-com.checkout_com_update_a_payment_setup Write write 2 Beta Updates a Payment Setup. Update the Payment Setup whenever there are significant changes in the data relevant to the customer's transaction. For example, when the customer makes a change that impacts the total payment amount. Official Checkout.com endpoint: PUT /payments/setups/{id}.
checkout-com.checkout_com_get_a_payment_setup Read read 1 Beta Retrieves a Payment Setup by its unique identifier. Official Checkout.com endpoint: GET /payments/setups/{id}.
checkout-com.checkout_com_confirm_a_payment_setup Read read 3 Beta Confirm a Payment Setup to begin processing the payment request with your chosen payment method. Official Checkout.com endpoint: POST /payments/setups/{id}/confirm/{payment_method_name}.
checkout-com.checkout_com_get_reports Read read 5 Returns the list of reports and their details. Official Checkout.com endpoint: GET /reports.
checkout-com.checkout_com_get_report_details Read read 1 Use this endpoint to retrieve a specific report using its ID. Official Checkout.com endpoint: GET /reports/{id}.
checkout-com.checkout_com_get_report_file Read read 2 Use this endpoint to retrieve a specific file from a given report using their respective IDs. Official Checkout.com endpoint: GET /reports/{id}/files/{fileId}.
checkout-com.checkout_com_create_session Write write 1 Create a payment session to authenticate a cardholder before requesting a payment. Payment sessions can be linked to one or more payments (in the case of recurring and other merchant-initiated payments). The `next_actions` object in the response tells you which actions can be performed next. Official Checkout.com endpoint: POST /sessions.
checkout-com.checkout_com_get_session Read read 2 Returns the details of the session with the specified identifier string. Official Checkout.com endpoint: GET /sessions/{id}.
checkout-com.checkout_com_update_session Write write 2 Update a session by providing information about the environment. Official Checkout.com endpoint: PUT /sessions/{id}/collect-data.
checkout-com.checkout_com_complete_session Read read 2 Complete a session Official Checkout.com endpoint: POST /sessions/{id}/complete.
checkout-com.checkout_com_update_session_three_ds_method_completion Write write 2 Update the session's 3DS Method completion indicator based on the result of accessing the 3DS Method URL. Official Checkout.com endpoint: PUT /sessions/{id}/issuer-fingerprint.
checkout-com.checkout_com_request_a_token Read read 1 Exchange card details for a reference token that can be used later to request a card payment. Tokens are single use and expire after 15 minutes. To create a token, please authenticate using your public key. **Please note:** You should only use the `card` type for testing purposes. Official Checkout.com endpoint: POST /tokens.
checkout-com.checkout_com_create_transfer Write write 2 Initiate a transfer of funds from source entity to destination entity. Official Checkout.com endpoint: POST /transfers.
checkout-com.checkout_com_get_transfer_details Read read 1 Retrieve transfer details using the transfer identifier. Official Checkout.com endpoint: GET /transfers/{id}.
checkout-com.checkout_com_get_bank_account_fields Read read 4 Returns the bank account field formatting required to create bank account instruments or perform payouts for the specified country and currency. Official Checkout.com endpoint: GET /validation/bank-accounts/{country}/{currency}.