Status: v1.0.0
P2P Module

Sent Transfers

Manage and track money transfers originated by you. This section covers initiating new transfers and monitoring their current status.


POST

Send Money

Transfer funds directly to another user using their phone number. The transaction will appear in their account instantly.

Endpoint

http://shield-pay.adhameldouh.com/api/v1/money-request/send

Request Body

Param Required
receiver_phone YES
amount YES
note NOT REQUIERED

JSON Response

{
    "success": true,
    "message": "Money request sent successfully",
    "request_id": 1
    "receiver_name": Adham Eldouh
}
POST

View Money Sent

Retrieve details of money requests you have sent, including status and receiver information.

Endpoint

http://shield-pay.adhameldouh.com/api/v1/money-request/sent

Header Requirement

Auth Bearer {TOKEN}

JSON Response

200 OK
{
    "success": true,
    "message": "Sent requests retrieved successfully",
    "total": "1",
    "data": [
        {
        "id": 1,
        "amount": "1000.00",
        "name": "Adham ELdouh"
        "phone": "01015013191"
        }
    ]
}