curl --request GET \
--url https://orbitflare.com/api/customer/v2/profile \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"data": {
"profile": {
"id": 123,
"name": "<string>",
"email": "jsmith@example.com",
"wallet_address": "<string>",
"payment_wallet_address": "<string>",
"balance": 123,
"created_at": "2023-11-07T05:31:56Z"
}
}
}Get the authenticated user’s profile.
curl --request GET \
--url https://orbitflare.com/api/customer/v2/profile \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"data": {
"profile": {
"id": 123,
"name": "<string>",
"email": "jsmith@example.com",
"wallet_address": "<string>",
"payment_wallet_address": "<string>",
"balance": 123,
"created_at": "2023-11-07T05:31:56Z"
}
}
}Was this page helpful?