GET v1/tmp/{id}

Get single TMP record by ID

Request Information

URI Parameters

NameDescriptionType
id

ID of TMP record needed

integer

Body Parameters

No parameters.

Response Information

Response Codes

Status CodeDescription
200 OK

JSON data with TMP information for matched user. See below for data returned

404 NotFound

No TMP data found

Resource Description

A JSON object containing the user record or not found

TmpData
NameDescriptionType
TmpId

ID for this TMP record

integer
FirstName

First Name for this TMP record

string
LastName

Last Name for this TMP record

string
MajorRole

Major role

string
RelatedRole1

Related role

string
RelatedRole2

Related role

string
RelationshipsEI

Colon seperated work preference. Left side value indicates their overall work preference and right side value indicates the net value

string
InformationCP

Colon seperated work preference. Left side value indicates their overall work preference and right side value indicates the net value

string
DecisionsAB

Colon seperated work preference. Left side value indicates their overall work preference and right side value indicates the net value

string
OrganisationSF

Colon seperated work preference. Left side value indicates their overall work preference and right side value indicates the net value

string
Innovating

Individual percentage for this Type of Work presented as a whole number

integer
Promoting

Individual percentage for this Type of Work presented as a whole number

integer
Developing

Individual percentage for this Type of Work presented as a whole number

integer
Organising

Individual percentage for this Type of Work presented as a whole number

integer
Producing

Individual percentage for this Type of Work presented as a whole number

integer
Inspecting

Individual percentage for this Type of Work presented as a whole number

integer
Maintaining

Individual percentage for this Type of Work presented as a whole number

integer
Advising

Individual percentage for this Type of Work presented as a whole number

integer
ShareScore

Indicates whether or not the user for this TMP record wishes to share their TMP data within the organisation

boolean
Tips

Parameter to retrive pacing tips

string
TmpWheel

Parameter to retrive the TMP wheel

string
OrgLogo

Parameter to retrive the consultant logo

string

Response Formats

application/json, text/json

Sample:
{
  "TmpId": 1,
  "FirstName": "TMP",
  "LastName": "User",
  "MajorRole": "Concluder-Producer",
  "RelatedRole1": "Controller-Inspector",
  "RelatedRole2": "Thruster-Organiser",
  "RelationshipsEI": "Introvert:27",
  "InformationCP": "Practical:23",
  "DecisionsAB": "Analytical:29",
  "OrganisationSF": "Structured:3",
  "Innovating": 5,
  "Promoting": 0,
  "Developing": 2,
  "Organising": 8,
  "Producing": 45,
  "Inspecting": 38,
  "Maintaining": 1,
  "Advising": 0,
  "ShareScore": true,
  "Tips": "IPAS",
  "TmpWheel": "CP_CoI_TO",
  "OrgLogo": "orglogo"
}