Skip to content

Get Profile details

This endpoint allows retrieving the profile information of the authenticated user.

Environments

The DrEnvío API supports two environments: Production and Sandbox.

Production Environment: This endpoint retrieves profile information for the authenticated user:

Ventana de terminal
https://prod.api-drenvio.com/v2/users/profile/details

Sandbox Environment: This endpoint retrieves profile information for the authenticated user:

Ventana de terminal
https://sandbox.api-drenvio.com/v2/users/profile/details

Params

The following optional parameters can be used in the request. If no parameters are provided, the response will return all available information. When specific parameters are included, only the requested data will be returned.

FieldDescriptionTypeRequired
balanceReturns the user’s available balance in MXN (Mexico) or COP (Colombia).Booleanfalse
created_atReturns the date and time when the user account was created.Booleanfalse
userReturns the unique identifier (User ID) associated with the user’s account.Booleanfalse
app_countryReturns the country where the authenticated user is registered.Booleanfalse
securityReturns security-related details, such as sender verification and account status.Booleanfalse
profileReturns the user’s profile information, including name, email, and phone number.Booleanfalse

API Request (Example with Parameters)

To retrieve profile information for the logged-in user, send the following GET request:

Ventana de terminal
GET https://prod.api-drenvio.com/v2/users/profile/details?balance=true&created_at=true&user=true&app_country=true&security=true&profile=true

API response (All fields)

{
"code": 200,
"success": true,
"res": {
"balance": 1000,
"created_at": "2024-08-29T23:09:31.892Z",
"user": "auth0|428g65ab1174d50068422000",
"security": {
"senders": [
"87350",
"66250",
"57800"
],
"senders_verified": true,
"identity_verified": true,
"international_senders": true,
"identity_verified_by_document": true,
"vip": true
},
"app_country": "MX",
"profile": {
"email": "john@drenvio.com",
"phone": "8681696700",
"company": "Drenvio",
"name": "John Doe"
}
}
}

Response Fields Breakdown

The following sections describe the different parts of the response when specific parameters are requested.

SecurityObject Field Descriptions

The SecurityObject contains security-related details about the authenticated user. These are the fields that will be returned in the response when the security parameter is requested.

FieldDescriptionType
sendersList of postal codes representing sender addresses authorized for shipping.Array
senders_verifiedIndicates whether sender verification is enabled. If true, multiple addresses (senders) can be used; if false, only one can be saved.Boolean
identity_verifiedIndicates whether the account has been verified.Boolean
international_sendersIndicates whether international shipments are allowed.Boolean
identity_verified_by_documentIndicates whether identity verification has been completed using official documents.Boolean
vipIndicates whether the user has VIP status.Boolean

ProfileObject Field description

The ProfileObject contains the user’s profile information, which includes basic details like email, phone, name, and company. These fields will be returned when the profile parameter is requested.

FieldDescriptionType
emailThe user’s email address.String
phoneThe user’s phone number.String
nameThe full name of the user.String
companyThe name of the company associated with the user.String