GET /me
¶ User Profile
The User Profile endpoint returns information about the Uber user that has authorized with the application.
¶ Resource
GET /v1/me
¶ Authorization
OAuth 2.0 user access token that has at least the profile
scope.
¶ Query Parameters
None
¶ Response for profile
scope
Status-Code: 200 OK
{
"rider_id": "8OlTlUG1TyeAQf1JiBZZdkKxuSSOUwu2IkO0Hf9d2HV52Pm25A0NvsbmbnZr85tLVi-s8CckpBK8Eq0Nke4X-no3AcSHfeVh6J5O6LiQt5LsBZDSi4qyVUdSLeYDnTtirw==",
"first_name": "Uber",
"last_name": "Developer",
"email": "uberdevelopers@gmail.com",
"picture": "https://d1w2poirtb3as9.cloudfront.net/f3be498cb0bbf570aa3d.jpeg",
"promo_code": "uberd340ue"
"mobile_verified": true,
}
A valid access token with the profile
and profile.mobile_number
scope (or if your application is allowlisted for mobile) will also return the user’s mobile number.
Status-Code: 200 OK
{
"rider_id": "8OlTlUG1TyeAQf1JiBZZdkKxuSSOUwu2IkO0Hf9d2HV52Pm25A0NvsbmbnZr85tLVi-s8CckpBK8Eq0Nke4X-no3AcSHfeVh6J5O6LiQt5LsBZDSi4qyVUdSLeYDnTtirw==",
"first_name": "Uber",
"last_name": "Developer",
"email": "uberdevelopers@gmail.com",
"picture": "https://d1w2poirtb3as9.cloudfront.net/f3be498cb0bbf570aa3d.jpeg",
"promo_code": "uberd340ue",
"mobile_verified": true,
"mobile_number": "1234567890"
}
Name | Type | Description |
---|---|---|
rider_id |
string |
Encrypted unique identifier of the Uber rider. |
first_name |
string |
First name of the Uber user. |
last_name |
string |
Last name of the Uber user. |
email |
string |
Email address of the Uber user. |
picture |
string |
Image URL of the Uber user. |
promo_code |
string |
The promotion code for the user. Can be used for rewards when referring other users to Uber |
mobile_verified |
boolean |
Whether the user has confirmed their mobile number. |
mobile_number |
string |
Mobile number of the Uber user. |