Poll an Insights import job; returns parsed fields for review.
GET
/admin/insights/import-jobs/{jobId}
const url = 'https://api.gospl.example/v1/admin/insights/import-jobs/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.gospl.example/v1/admin/insights/import-jobs/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” jobId
required
string format: uuid
Responses
Section titled “ Responses ”OK
Media type application/json
object
jobId
required
string format: uuid
status
required
string
parsedFields
Full Insights text — fields MUST NOT be truncated (FR-01).
object
keyStrengths
required
string
blindSpots
required
string
communicationDos
required
string
communicationDonts
required
string
summary
Percentages + colour wheel for the page (FR-03, FR-04).
object
colourWheel
object
key
additional properties
number
percentages
object
key
additional properties
number
fullProfilePdfUrl
FR-02 — link to the complete Insights PDF.
string format: uri
error
string
Example
{ "status": "queued"}Not found within the caller’s tenant.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}