CBL | DevPortal
  • Welcome to the Central Bank of Libya Developer Portal | DevPortal
  • LYPay
    • LYPay Instant Payment System
    • Regulatory Guidelines & Compliance
    • Accounting & Settlement in LYPay
    • LYPay Instant Payment System – Technical Overview
    • API Documentation
      • About the APIs
      • API reference
        • Webhooks
        • Auth
          • Revoke
        • Api
          • V1
            • Miscs
              • Institutions
              • Transaction status
            • Payments
              • Funds transfers
                • Refund
                • Confirm
              • Debited funds transfers
              • Credited funds transfers
                • By internal merchant reference
              • Details
            • Auth
              • Token
              • Password
                • Reset
      • Specification
    • NUMO QR Code Standards
  • Contact & Support
Powered by GitBook
On this page
  1. LYPay
  2. API Documentation
  3. API reference
  4. Api
  5. V1
  6. Payments

Credited funds transfers

PreviousDebited funds transfersNextBy internal merchant reference

List Credited Funds Transfers

get

Retrieves a paginated list of credited funds transfers filtered by type and date.

Authorizations
Query parameters
filter[type]stringOptional

Filter by transaction type (e.g., P2P, P2M)

filter[date]string · dateOptional

Filter by transaction date (YYYY-MM-DD)

Responses
200
Paginated list of credited funds transfers
application/json
default
An error response object
application/json
get
GET /api/v1/payments/credited-funds-transfers HTTP/1.1
Host: 127.0.0.1:8080
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "data": [
    {
      "uuid": "af6ebb8f-4c73-46e9-8784-9ca0794b24b1",
      "paymentReference": "ead6913b-25d2-4898-b7a6-f1ac90fa9f59",
      "transactionType": "P2P",
      "description": "justtest",
      "transactionDateTime": "2024-05-25T17:25:03+00:00",
      "transactionTimestamp": 1716657903,
      "valueDateTime": "2024-05-25T17:25:03+00:00",
      "status": {
        "name": "completed",
        "code": "03",
        "message": ""
      },
      "debtorAmount": {
        "currency": "lyd",
        "amount": null,
        "fees": "4.0"
      },
      "creditorAmount": {
        "currency": "lyd",
        "amount": null,
        "fees": "0"
      },
      "debtorAccount": {
        "schemeName": "bankAccount",
        "identification": "002205000004186",
        "name": "NAME"
      },
      "creditorAccount": {
        "schemeName": "bankAccount",
        "identification": "012010015359018",
        "name": "NAME"
      },
      "creditorInstitution": {
        "name": "North Africa Bank",
        "code": "007"
      },
      "additionalData": []
    }
  ],
  "links": {
    "first": "http://192.168.18.43/api/v1/payments/credited-funds-transfers?page=1",
    "last": "http://192.168.18.43/api/v1/payments/credited-funds-transfers?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "links": [],
    "path": "http://192.168.18.43/api/v1/payments/credited-funds-transfers",
    "per_page": 15,
    "to": 1,
    "total": 1
  }
}