GET
/
personas
/
{uuid}
curl --request GET \
  --url https://app.prontohq.com/api/v2/personas/{uuid} \
  --header 'X-API-KEY: <api-key>'
{
  "uuid": "8e1dcba0-f0bb-4071-99fc-f18ba6559ccc",
  "name": "VP Grenoble",
  "job_titles": [
    "CEO",
    "COO",
    "Cofounder"
  ],
  "location": [
    "Grenoble, Auvergne-Rhône-Alpes, France",
    "Paris, Île-de-France, France"
  ],
  "created_at": "2024-09-09T15:15:15.951Z",
  "updated_at": "2024-09-09T15:15:15.951Z"
}

Authorizations

X-API-KEY
string
header
required

Your API key

Path Parameters

id
string
required

ID of the persona to retrieve

Response

200 - application/json
A list object
uuid
string

The unique identifier of the persona

Example:

"8e1dcba0-f0bb-4071-99fc-f18ba6559ccc"

name
string

The name of the persona

Example:

"VP Grenoble"

job_titles
string[]

List of job titles associated with the persona

Example:
["CEO", "COO", "Cofounder"]
location
string[]

List of locations associated with the persona

Example:
[
  "Grenoble, Auvergne-Rhône-Alpes, France",
  "Paris, Île-de-France, France"
]
created_at
string

The creation date of the persona

Example:

"2024-09-09T15:15:15.951Z"

updated_at
string

The last modified date of the persona

Example:

"2024-09-09T15:15:15.951Z"