Get user details
curl --request GET \
--url https://m2m-backend-qa.up.railway.app/partner/users/{userId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://m2m-backend-qa.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://m2m-backend-qa.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://m2m-backend-qa.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://m2m-backend-qa.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://m2m-backend-qa.up.railway.app/partner/users/{userId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://m2m-backend-qa.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,
"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>",
"userDataSources": {
"name.firstName": "link",
"idNumber": "data_request"
}
}
}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://m2m-backend-qa.up.railway.app/partner/users/{userId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://m2m-backend-qa.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://m2m-backend-qa.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://m2m-backend-qa.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://m2m-backend-qa.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://m2m-backend-qa.up.railway.app/partner/users/{userId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://m2m-backend-qa.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,
"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>",
"userDataSources": {
"name.firstName": "link",
"idNumber": "data_request"
}
}
}Authorizations
Your partner API key. Use m2m_test_* keys for the sandbox environment.
Path Parameters
M2M user identifier
Example:
"user_acme_x1y2z3"
⌘I