GET
/
customers
/
me
Giriş yapan müşteriyi getir
curl --request GET \
  --url https://api.hemenmagaza.com/v1/customers/me \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "email": "jsmith@example.com",
  "id": 123,
  "phone": "<string>"
}

Authorizations

Authorization
string
header
required

Authorization: Bearer YOUR_API_TOKEN

Response

Müşteri bilgisi.

name
string
required
Example:

"Ayşe Yılmaz"

email
string<email>
required
Example:

"ayse@example.com"

id
integer
Example:

301

phone
string | null
Example:

"+905551112233"