Get user details
curl --request GET \
--url https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"userId": "user_acme_x1y2z3",
"referenceId": "user-12345",
"name": {
"firstName": "Juan",
"secondName": "Carlos",
"lastName": "Pérez",
"secondLastName": "García"
},
"cipStatus": "verified",
"blocked": false,
"suspended": false,
"createdAt": "2026-02-10T12:00:00.000Z",
"updatedAt": "2026-02-10T12:05:00.000Z",
"stats": {
"totalLinks": 5,
"completedOperations": 3,
"lastActivityAt": "2026-02-10T12:00:00.000Z"
},
"idType": "INE",
"idNumber": "****6789",
"dob": "1990-05-15",
"cipVerifiedAt": "2026-02-10T14:00:00.000Z",
"blockedAt": "<string>",
"blockedReason": "<string>",
"suspendedAt": "<string>",
"suspendedReason": "<string>",
"userDataSources": {
"name.firstName": "link",
"idNumber": "data_request"
},
"cipResult": {
"ticketId": "tkt_abc123",
"dictamenId": "dict_abc123",
"status": "approved",
"receivedAt": "2026-02-10T14:00:00.000Z",
"outcomeId": "out_abc123",
"outcomeFetchError": "<string>",
"outcome": {
"id": "out_abc123",
"data": {
"firstName": "Juan",
"secondName": "Carlos",
"lastName": "Pérez",
"secondLastName": "García",
"fullName": "Juan Carlos Pérez García",
"idNumber": "ABCD123456HDFXYZ00",
"dob": "1990-05-15",
"expDate": "2030-12-31",
"gender": "M",
"docIssuerCountryISO2": "MX",
"docIssuerCountryISO3": "MEX",
"docIssuingAuthority": {},
"docExtraInfo": {},
"documentType": "INE",
"documentSubType": "<string>",
"homeAddressRaw": "Calle Reforma 123, Col Centro, CDMX",
"homeAddressStreet": "Calle Reforma 123",
"homeAddressCity": "Ciudad de México",
"homeAddressState": "CDMX",
"homeAddressZip": "06000",
"homeAddressCountryISO3": "MEX",
"homeAddressCountryISO2": "MX",
"homeAddressCountryName": "Mexico"
},
"reasoning": "<string>",
"processingTimeMs": 3500,
"createdAt": "<string>"
}
},
"livenessImageUrl": "/partner/users/user_acme_x1y2z3/liveness-image",
"idImageUrl": "/partner/users/user_acme_x1y2z3/id-document-image"
}
}Partner - Users
Get user details
Returns full details of a specific user including identity information (masked), CIP verification status, blocked status, and activity statistics (total links, completed operations, last activity).
GET
/
partner
/
users
/
{userId}
Get user details
curl --request GET \
--url https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://raas-widgets-backend-sandbox.up.railway.app/partner/users/{userId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"userId": "user_acme_x1y2z3",
"referenceId": "user-12345",
"name": {
"firstName": "Juan",
"secondName": "Carlos",
"lastName": "Pérez",
"secondLastName": "García"
},
"cipStatus": "verified",
"blocked": false,
"suspended": false,
"createdAt": "2026-02-10T12:00:00.000Z",
"updatedAt": "2026-02-10T12:05:00.000Z",
"stats": {
"totalLinks": 5,
"completedOperations": 3,
"lastActivityAt": "2026-02-10T12:00:00.000Z"
},
"idType": "INE",
"idNumber": "****6789",
"dob": "1990-05-15",
"cipVerifiedAt": "2026-02-10T14:00:00.000Z",
"blockedAt": "<string>",
"blockedReason": "<string>",
"suspendedAt": "<string>",
"suspendedReason": "<string>",
"userDataSources": {
"name.firstName": "link",
"idNumber": "data_request"
},
"cipResult": {
"ticketId": "tkt_abc123",
"dictamenId": "dict_abc123",
"status": "approved",
"receivedAt": "2026-02-10T14:00:00.000Z",
"outcomeId": "out_abc123",
"outcomeFetchError": "<string>",
"outcome": {
"id": "out_abc123",
"data": {
"firstName": "Juan",
"secondName": "Carlos",
"lastName": "Pérez",
"secondLastName": "García",
"fullName": "Juan Carlos Pérez García",
"idNumber": "ABCD123456HDFXYZ00",
"dob": "1990-05-15",
"expDate": "2030-12-31",
"gender": "M",
"docIssuerCountryISO2": "MX",
"docIssuerCountryISO3": "MEX",
"docIssuingAuthority": {},
"docExtraInfo": {},
"documentType": "INE",
"documentSubType": "<string>",
"homeAddressRaw": "Calle Reforma 123, Col Centro, CDMX",
"homeAddressStreet": "Calle Reforma 123",
"homeAddressCity": "Ciudad de México",
"homeAddressState": "CDMX",
"homeAddressZip": "06000",
"homeAddressCountryISO3": "MEX",
"homeAddressCountryISO2": "MX",
"homeAddressCountryName": "Mexico"
},
"reasoning": "<string>",
"processingTimeMs": 3500,
"createdAt": "<string>"
}
},
"livenessImageUrl": "/partner/users/user_acme_x1y2z3/liveness-image",
"idImageUrl": "/partner/users/user_acme_x1y2z3/id-document-image"
}
}Authorizations
Your partner API key. Use raas_sandbox_* keys for the sandbox environment and raas_live_* keys for production.
Path Parameters
M2M user identifier
Example:
"user_acme_x1y2z3"
⌘I