Resolve or queue an artist identity
curl --request POST \
--url https://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"idempotencyKey": "<string>",
"tenantId": "<string>",
"studioCanonicalId": "<string>",
"sourceMessageId": "<string>",
"displayName": "<string>",
"phoneHash": "<string>",
"instagramHandle": "<string>",
"tattooCoProfileUrl": "<string>"
}
'import requests
url = "https://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests"
payload = {
"idempotencyKey": "<string>",
"tenantId": "<string>",
"studioCanonicalId": "<string>",
"sourceMessageId": "<string>",
"displayName": "<string>",
"phoneHash": "<string>",
"instagramHandle": "<string>",
"tattooCoProfileUrl": "<string>"
}
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({
idempotencyKey: '<string>',
tenantId: '<string>',
studioCanonicalId: '<string>',
sourceMessageId: '<string>',
displayName: '<string>',
phoneHash: '<string>',
instagramHandle: '<string>',
tattooCoProfileUrl: '<string>'
})
};
fetch('https://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests', 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://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests",
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([
'idempotencyKey' => '<string>',
'tenantId' => '<string>',
'studioCanonicalId' => '<string>',
'sourceMessageId' => '<string>',
'displayName' => '<string>',
'phoneHash' => '<string>',
'instagramHandle' => '<string>',
'tattooCoProfileUrl' => '<string>'
]),
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://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests"
payload := strings.NewReader("{\n \"idempotencyKey\": \"<string>\",\n \"tenantId\": \"<string>\",\n \"studioCanonicalId\": \"<string>\",\n \"sourceMessageId\": \"<string>\",\n \"displayName\": \"<string>\",\n \"phoneHash\": \"<string>\",\n \"instagramHandle\": \"<string>\",\n \"tattooCoProfileUrl\": \"<string>\"\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://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"idempotencyKey\": \"<string>\",\n \"tenantId\": \"<string>\",\n \"studioCanonicalId\": \"<string>\",\n \"sourceMessageId\": \"<string>\",\n \"displayName\": \"<string>\",\n \"phoneHash\": \"<string>\",\n \"instagramHandle\": \"<string>\",\n \"tattooCoProfileUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests")
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 \"idempotencyKey\": \"<string>\",\n \"tenantId\": \"<string>\",\n \"studioCanonicalId\": \"<string>\",\n \"sourceMessageId\": \"<string>\",\n \"displayName\": \"<string>\",\n \"phoneHash\": \"<string>\",\n \"instagramHandle\": \"<string>\",\n \"tattooCoProfileUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"artistCanonicalId": "<string>",
"reviewRequired": true,
"legalKycVerified": true
}
}{
"success": true,
"data": {
"artistCanonicalId": "<string>",
"reviewRequired": true,
"legalKycVerified": true
}
}Resolve Artist Identity
Match approved identity evidence or queue operator review before portfolio staging.
POST
/
artist-resolution-requests
Resolve or queue an artist identity
curl --request POST \
--url https://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"idempotencyKey": "<string>",
"tenantId": "<string>",
"studioCanonicalId": "<string>",
"sourceMessageId": "<string>",
"displayName": "<string>",
"phoneHash": "<string>",
"instagramHandle": "<string>",
"tattooCoProfileUrl": "<string>"
}
'import requests
url = "https://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests"
payload = {
"idempotencyKey": "<string>",
"tenantId": "<string>",
"studioCanonicalId": "<string>",
"sourceMessageId": "<string>",
"displayName": "<string>",
"phoneHash": "<string>",
"instagramHandle": "<string>",
"tattooCoProfileUrl": "<string>"
}
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({
idempotencyKey: '<string>',
tenantId: '<string>',
studioCanonicalId: '<string>',
sourceMessageId: '<string>',
displayName: '<string>',
phoneHash: '<string>',
instagramHandle: '<string>',
tattooCoProfileUrl: '<string>'
})
};
fetch('https://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests', 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://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests",
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([
'idempotencyKey' => '<string>',
'tenantId' => '<string>',
'studioCanonicalId' => '<string>',
'sourceMessageId' => '<string>',
'displayName' => '<string>',
'phoneHash' => '<string>',
'instagramHandle' => '<string>',
'tattooCoProfileUrl' => '<string>'
]),
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://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests"
payload := strings.NewReader("{\n \"idempotencyKey\": \"<string>\",\n \"tenantId\": \"<string>\",\n \"studioCanonicalId\": \"<string>\",\n \"sourceMessageId\": \"<string>\",\n \"displayName\": \"<string>\",\n \"phoneHash\": \"<string>\",\n \"instagramHandle\": \"<string>\",\n \"tattooCoProfileUrl\": \"<string>\"\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://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"idempotencyKey\": \"<string>\",\n \"tenantId\": \"<string>\",\n \"studioCanonicalId\": \"<string>\",\n \"sourceMessageId\": \"<string>\",\n \"displayName\": \"<string>\",\n \"phoneHash\": \"<string>\",\n \"instagramHandle\": \"<string>\",\n \"tattooCoProfileUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tattooapi.com/api/private/portfolio-intake/v1/artist-resolution-requests")
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 \"idempotencyKey\": \"<string>\",\n \"tenantId\": \"<string>\",\n \"studioCanonicalId\": \"<string>\",\n \"sourceMessageId\": \"<string>\",\n \"displayName\": \"<string>\",\n \"phoneHash\": \"<string>\",\n \"instagramHandle\": \"<string>\",\n \"tattooCoProfileUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"artistCanonicalId": "<string>",
"reviewRequired": true,
"legalKycVerified": true
}
}{
"success": true,
"data": {
"artistCanonicalId": "<string>",
"reviewRequired": true,
"legalKycVerified": true
}
}Use identity evidence such as an existing TattooAPI mapping, a normalized phone hash, Instagram handle, or tattoo.co profile URL. This is identity evidence, not legal KYC, and an unmatched request never creates a public artist profile.
Authorizations
ApiKeyAuthBearerAuth
WorkOS organization API key mapped to a TattooAPI service actor.
Body
application/json
Minimum string length:
8Available options:
permanent_imessage, partner_api Pattern:
^sha256:[a-f0-9]{64}$Was this page helpful?
⌘I
