All Customers

Get https://app.moneygraph.ai/api/v1/invoice/recipient

Headers

Authorization* string

Pass your {api_key} as a bearer token in the request header to authorize this call

Body parameters

page string

Sets the page number; use "all" to retrieve all items. The default is 1

limit integer

Specifies the default number of items per page, with a default setting of 20

Response


{
    "data": [
    {
            "id": "705c5559-562f-4b8c-b24e-8705912c54fc",
            "first_name": "Jon",
            "last_name": "Doe",
            "email": "[email protected]",
            "phone": "+2349051194087",
            "created_at": "2025-10-02T09:04:36.000000Z",
            "last_updated_at": "2025-10-02T09:04:36.000000Z",
            "entity_type": "company",
            "company_name": "EaglesTech Enterprise",
            "mode": "test"
        },
        {
            "id": "9bb3e51c-56e9-4d05-9964-f076c1a2e697",
            "first_name": "David",
            "last_name": "Grandeur",
            "email": "[email protected]",
            "phone": "+2349051194087",
            "created_at": "2025-10-02T08:52:43.000000Z",
            "last_updated_at": "2025-10-02T08:52:43.000000Z",
            "entity_type": "individual",
            "company_name": "",
            "mode": "test"
        }
    ],
    "links": {
        "first": "https://app.moneygraph.ai/api/v1/invoice/recipient?page=1",
        "last": "https://app.moneygraph.ai/api/v1/invoice/recipient?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "https://app.moneygraph.ai/api/v1/invoice/recipient?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "path": "https://app.moneygraph.ai/api/v1/invoice/recipient",
        "per_page": 20,
        "to": 10,
        "total": 10
    }
}