Partner API
test
  • latest
  • test
    Partner API
    test
    • latest
    • test
    • Back to home
    • SEPA Transfers Copy
    • Create a SEPA Transfer
      POST
    • Get SEPA Transfer Details
      GET

      Get SEPA Transfer Details

      Testing Env
      https://partner-api-stage.p100.io
      Testing Env
      https://partner-api-stage.p100.io
      GET
      /v1/sepa-transfer/details/{transferId}
      This endpoint returns detailed information about a specific SEPA transfer, including the user, amount, currency, receiver details, IBAN, status, and creation time. Use this endpoint to track the status and outcome of a SEPA transfer after it has been created, check for errors, or retrieve all relevant data for reporting and reconciliation.

      Request

      Authorization
      API Key
      Add parameter in header
      x-api-key
      Example:
      x-api-key: ********************
      or
      Path Params

      Responses

      🟢200Success
      application/json
      Body

      🟠404P428: Sepa transfer not found
      🟠401Access Denied
      🟠400P500: Unknown exception
      🟠400P501: Service temporarily unavailable
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://partner-api-stage.p100.io/v1/sepa-transfer/details/aa816af7-bb28-448d-a5da-502d76471f41' \
      --header 'x-api-key: <api-key>'
      Response Response Example
      200 - Success
      {
          "id": "aa816af7-bb28-448d-a5da-502d76471f41",
          "type": "external",
          "amount": "5.51",
          "transferTitle": "Invoice #123",
          "destinationIban": "PL06109027500000000148911547",
          "receiverFirstName": "John",
          "receiverLastName": "Brown",
          "status": "SUCCESSFUL",
          "currency": "eur",
          "fee": 1,
          "createdAt": "2025-07-31T12:55:19.269Z",
          "user": {
              "externalUserId": "75a1d530-3c12-44e8-a23a-0241b9e73c87",
              "email": "test_rafal_426603@test.com",
              "firstName": "Piotr",
              "lastName": "Nowak",
              "address": "ul. Marszałkowska 99 22",
              "city": "Warsaw",
              "country": "PL",
              "documentType": "RESIDENCE_PERMIT",
              "documentNumber": "b52428ac",
              "pesel": "199409024820",
              "birthCountry": "PL",
              "birthDate": "1994-09-02T00:00:00.000Z"
          }
      }
      Previous
      Create a SEPA Transfer
      Built with