Retrieve a full profile (Stage 2)
curl --request POST \
--url https://client-p.pylote.io/partners/reveal \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"freelanceId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"recruiterEmail": "marie.gilles@lutessa.com"
}
'import requests
url = "https://client-p.pylote.io/partners/reveal"
payload = {
"freelanceId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"recruiterEmail": "marie.gilles@lutessa.com"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
freelanceId: 'a1b2c3d4-e5f6-7890-abcd-ef1234567890',
recruiterEmail: 'marie.gilles@lutessa.com'
})
};
fetch('https://client-p.pylote.io/partners/reveal', 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://client-p.pylote.io/partners/reveal",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'freelanceId' => 'a1b2c3d4-e5f6-7890-abcd-ef1234567890',
'recruiterEmail' => 'marie.gilles@lutessa.com'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://client-p.pylote.io/partners/reveal"
payload := strings.NewReader("{\n \"freelanceId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n \"recruiterEmail\": \"marie.gilles@lutessa.com\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://client-p.pylote.io/partners/reveal")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"freelanceId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n \"recruiterEmail\": \"marie.gilles@lutessa.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://client-p.pylote.io/partners/reveal")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"freelanceId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n \"recruiterEmail\": \"marie.gilles@lutessa.com\"\n}"
response = http.request(request)
puts response.read_bodyPartners
Retrieve a full profile (Stage 2)
Returns a freelancer’s full profile (JSON Resume format, identical to
GET /freelances) from the id obtained at Stage 1.
recruiterEmailis required and must be in your whitelist: this is what lets the freelancer see ” via ” in their stats.- The
profile_viewevent is emitted automatically on Pylote’s side: no need to callPOST /partners/eventsfor the view itself (keep it for granular actions: click_cv, add_favorite, etc.). - Contact goes through the Pylote proxy email and the tracked LinkedIn link. Phone numbers are not exposed through the partner channel.
- An
opt_outrecruiter cannot reveal a profile (403): a reveal exposes contact details, which requires tracking (see Tracking obligations).
POST
/
partners
/
reveal
Retrieve a full profile (Stage 2)
curl --request POST \
--url https://client-p.pylote.io/partners/reveal \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"freelanceId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"recruiterEmail": "marie.gilles@lutessa.com"
}
'import requests
url = "https://client-p.pylote.io/partners/reveal"
payload = {
"freelanceId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"recruiterEmail": "marie.gilles@lutessa.com"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
freelanceId: 'a1b2c3d4-e5f6-7890-abcd-ef1234567890',
recruiterEmail: 'marie.gilles@lutessa.com'
})
};
fetch('https://client-p.pylote.io/partners/reveal', 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://client-p.pylote.io/partners/reveal",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'freelanceId' => 'a1b2c3d4-e5f6-7890-abcd-ef1234567890',
'recruiterEmail' => 'marie.gilles@lutessa.com'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://client-p.pylote.io/partners/reveal"
payload := strings.NewReader("{\n \"freelanceId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n \"recruiterEmail\": \"marie.gilles@lutessa.com\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://client-p.pylote.io/partners/reveal")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"freelanceId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n \"recruiterEmail\": \"marie.gilles@lutessa.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://client-p.pylote.io/partners/reveal")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"freelanceId\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n \"recruiterEmail\": \"marie.gilles@lutessa.com\"\n}"
response = http.request(request)
puts response.read_bodyAutorisations
Cle API fournie par Pylote. Inclure dans le header x-api-key de chaque requete.
Exemple : x-api-key: votre-cle-api
Corps
application/json
Réponse
Full profile in JSON Resume format (same schema as GET /freelances)