Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Section


Column
width20%


Panel
borderColor#BF9900
bgColor#FFFFFF
titleBGColor#E5D699
borderStylesolid
titleIn this Section
Table of Contents
indent15px
stylenone




Column

Overview

Application Requirements

Include Page
API Requirements
API Requirements

Getting Started

The easiest way to start learning about this interface is to try it out. This section shows how to use the curl command line tool to execute sample queries.

Code Block
titleSample JSON Request
	curl -i -H "Accept: application/json" https://iet-ws.ucdavis.edu/api/iam/orginfo/pps/depts/reportsTo?deptCode=062006&key=myKey&v=1.0

The response to all of the above requests have a Content-Type of text/javascript.  An example response for the above request is shown below:

Code Block
langxml
titleSample JSON Response
{
"reponseData":
{
"results":
[{
"iamId":"1000084348",
"deptCode":"061419",
"deptOfficialName":"IET-ENT INFRA SVCS",
"deptDisplayName":"IET-ENT INFRA SVCS",
"deptAbbrev":"IET-EIS",
"isUCDHS":false,
"bouOrgOId":"F80B657C9EFA23A0E0340003BA8A560D",
..........
"assocRank":"1",
"assocStartDate":"2019-01-13 00:00:00",
"assocEndDate":null,
"titleCode":"008291",
"titleOfficialName":"TELEVISION TCHN PRN",
"titleDisplayName":"TELEVISION TCHN PRN",
"positionTypeCode":"2",
"positionType":"Regular/Career",
"percentFullTime":"1",
"createDate":"2019-01-10 11:33:41",
"modifyDate":"2021-01-20 14:00:52",
"emplClass":"2",
"emplClassDesc":"Staff: Career",
"emplPositionNumber":"40237482",
"reportsToEmplID":"10206139",
"reportsToPositionNum":"40224687"
}]},
"responseDetails":"",
"responseStatus":0
}

JSON Reference

Unlike the core JavaScript interface, the JSON interface is exposed through a uniform URL that contains CGI arguments. Your application can use an HTTP stack of its choosing. In order to use the JSON interface:

  • You must construct a properly formatted URL with all necessary CGI arguments.
  • You must send an HTTP referer header that accurately identifies your application.
  • You must process the JSON-encoded response.

Request Format

URL Base Addresses

The following URL patterns are supported by the IAM Identity Store Core People API:

Code Block
langxml
titleSupported URL Patterns
https://iet-ws.ucdavis.edu/api/iam/orginfo/pps/depts/reportsTo?deptCode=062006

URL Arguments

Include Page
URL Arguments
URL Arguments
Required URL Arguments
Include Page
Required URL Arguments
Required URL Arguments
Supported URL arguments

Include Page
Supported URL Arguments
Supported URL Arguments

Response Format

Include Page
Response Format for IET-WS APIs
Response Format for IET-WS APIs

Results Array: Guaranteed Fields

The results array always contains the parameters listed in this section, even if the value is empty.

Property

Description

orgOId

Unique IAM guid for this PPS department

deptCode

adminDeptCode

apptDeptCode

PPS unique deptcode

deptOfficialName

adminDeptOfficialName

apptDeptOfficialName

The official name for this department

deptDisplayName

adminDeptDisplayName

apptDeptDisplayName

The display name for this department

deptAbbrev

adminDeptAbbrev

apptDeptAbbrev

The abbreviation for this department

isUCDHS

true/false, is the department an UCDHS department

bouOrgOId

Unique IAM guid for the parent BOU department

createDate

The date this record was created in the IAM system.

modifyDate

The last date this record was modified in the IAM system.

assocRankFor individuals with multiple associations, this ranks them by title code.
assocStartDateReported start date for the association
assocEndDateReported end date for the association
titleCodePPS title code
titleOfficialNamePPS title name
titleDisplayNamePPS title display name
positionTypeCodePPS position type code
positionTypePPS position type description
percentFullTimeThe percent fulltime the individual is required to work for this association.
emplClassThe employee class code. (Valid values are 1,2,3,4,5,6,7,8,9,10,11,13,14,15,20,21,22,23,24 and C)
emplClassDescThe employee class description.
emplPositionNumberThe employee position number.
reportsToEmplIDThe employee ID of the manager/supervisor the given employee reports to.
reportsToPositionNumThe position number of the manager/supervisor the given employee reports to.

results[]

results[] contains an array of bulk load result objects, one for each result. Each time the API executes, this property is cleared, and each time a API completes, the array is populated. If there are no results to report, the .length property of this array will be set to 0. Therefore, results will never be null, and you can always safely check for results.length == 0.

Response Codes and Messages

Include Page
Response Codes and Messages
Response Codes and Messages

Troubleshooting

Include Page
Troubleshooting IET-WS APIs
Troubleshooting IET-WS APIs


...