PayWithMyBank (Trustly) verifyCustomer API

The verifyCustomer API from PayWithMyBank (Trustly) — 1 operation(s) for verifycustomer.

Operations 1

GET /transactions/{transactionId}/payment/customer/verify Get customer verification data #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/paywithmybank-verifycustomer-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

paywithmybank-verifycustomer-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Verify Customer API
  version: 1.0.0
servers:
- url: https://sandbox.trustly.one/api/v1
  description: Sandbox
tags:
- name: verifyCustomer
paths:
  /transactions/{transactionId}/payment/customer/verify:
    get:
      operationId: get-verify-customer
      summary: Get customer verification data
      description: Retrieves verification results for a given transaction. Returns a match result for each attribute compared.
      tags:
      - verifyCustomer
      parameters:
      - name: transactionId
        in: path
        description: The unique identifier of the transaction.
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Verify_Customer_get-verify-customer_Response_200'
        '400':
          description: One or more required fields are missing from the request object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Get-verify-customerRequestBadRequestError'
        '401':
          description: Access not authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Get-verify-customerRequestUnauthorizedError'
components:
  schemas:
    Verify_Customer_get-verify-customer_Response_200:
      type: object
      properties:
        matches:
          type: array
          items:
            $ref: '#/components/schemas/VerifyCustomerMatch'
      title: Verify Customer_get-verify-customer_Response_200
    Get-verify-customerRequestBadRequestError:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/BaseException'
      required:
      - errors
      title: Get-verify-customerRequestBadRequestError
    BaseException:
      type: object
      properties:
        domain:
          type: string
        code:
          type: integer
        location:
          type: string
        message:
          type: string
        occurredAt:
          type: integer
      title: BaseException
    VerifyCustomerMatchResult:
      type: string
      enum:
      - '-1'
      - '0'
      - '1'
      - '2'
      description: 'The result of the comparison:

        * `-1`: Inconclusive

        * `0`: NoMatch

        * `1`: PartialMatch

        * `2`: Match'
      title: VerifyCustomerMatchResult
    VerifyCustomerMatch:
      type: object
      properties:
        attribute:
          type: string
          description: The customer attribute that was compared. For example, customer.name or customer.address.zip.
        result:
          $ref: '#/components/schemas/VerifyCustomerMatchResult'
          description: 'The result of the comparison:

            * `-1`: Inconclusive

            * `0`: NoMatch

            * `1`: PartialMatch

            * `2`: Match'
        source:
          $ref: '#/components/schemas/VerifyCustomerMatchSource'
          description: 'The data source used for comparison:

            * `1`: Profile

            * `2`: SelectedAccount

            * `3`: OtherAccounts

            * `4`: TrustlyUser'
      title: VerifyCustomerMatch
    VerifyCustomerMatchSource:
      type: string
      enum:
      - '1'
      - '2'
      - '3'
      - '4'
      description: 'The data source used for comparison:

        * `1`: Profile

        * `2`: SelectedAccount

        * `3`: OtherAccounts

        * `4`: TrustlyUser'
      title: VerifyCustomerMatchSource
    Get-verify-customerRequestUnauthorizedError:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/BaseException'
      required:
      - errors
      title: Get-verify-customerRequestUnauthorizedError
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic
      description: ''