GET personas

GET/personas

Provides a download URL to a zip file of personas from the active exercise.

The download URL is valid for 15mins after request.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Empty

Response

presigned_url

string

URL to the persona zip file

{
  "presigned_url": "https://...personas.zip?Expires=....Signature=...xxxx"
}

Code segment

To access the personas, the flow is:

  1. Call the Conducttr /personas endpoint to get a presigned URL

  2. Download the ZIP file from that URL

  3. Extract the first .json file from the archive

  4. Parse and return the JSON content

chevron-rightcode segmenthashtag

Last updated

Was this helpful?