1. Users
Payland Card
  • Authentication
  • Users
    • Create User
      POST
    • Get User
      GET
    • City Codes
      GET
  • Cards
    • Create Card
      POST
    • Get Card
      GET
    • Load Funds
      POST
    • Card Transactions
      GET
    • Freeze Card
      POST
    • Unfreeze Card
      POST
    • Card Details
      GET
    • Delete Card
      DELETE
  • Webhooks (Payland → your server)
    • SIMULATE card.created
      POST
    • SIMULATE card.creation_failed
      POST
  1. Users

Get User

GET
/api/v1/users/{{user_id}}
Only users belonging to your tenant are visible; another tenant's ID returns 404.

Request

Header Params

Responses

🟢200
application/json
Bodyapplication/json

🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://api.paylandcard.com/api/v1/users/{{user_id}}' \
--header 'X-Api-Key: {{api_key}}' \
--header 'X-Timestamp: {{timestamp}}' \
--header 'X-Signature: {{signature}}' \
--header 'Accept: application/json'
Response Response Example
200 - 200 — Success
{
    "data": {
        "id": "usr_01kx0hq7p3y52m0fbwn4gftzht",
        "first_name": "Ali",
        "last_name": "Veli",
        "email": "ali@firma.com",
        "phone": "+905551112233",
        "birthday": "1992-03-20",
        "country": "TR",
        "town": "TR-34-01",
        "address": "Bagdat Cad. No:1 Kadikoy",
        "post_code": "34710",
        "status": "active",
        "created_at": "2026-07-08T12:00:00+00:00"
    },
    "status": true
}
Modified at 2026-07-17 06:22:49
Previous
Create User
Next
City Codes
Built with