Versions Compared

Key

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

...

titleDRAFT * DRAFT * DRAFT

 

 

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

 

Column

Overview

API Requirements

Include Page
IETP:API RequirementsIETP:
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-test.ucdavis.edu/api/iam/orginfo/odr/depts?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 the following above request is shown below:

xml
Code Block
lang
titleSample JSON Response
langxml

{
"reponseData":{
"results":[
{

"modifyDate"orgOId:"2012-04-17 15:19:33 "187A069BA7D80609E040EDA991693B82","
deptCode": "82828097","isUCDHS"
deptOfficialName:"Y","orgOId":"187A069BA8200609E040EDA991693B82","deptOfficialName":"UCDHS: School of Medicine Dean's Office","deptDisplayName":"UCDHS: ADMINISTRATION, SCHOOL OF MEDICINE","createDate":"2006-07-13 12:53:00","deptAbbrev":"UCDHS: MED: Dean's Office"}
 "Pop Hlth & Repro: VM",
deptDisplayName: "POPULATION HEALTH AND REPRODUCTION: VET MED",
deptAbbrev: "Pop Hlth & Repro: VM",isUCDHS: false,
createDate: "2010-09-28 13:56:32",
modifyDate: "2013-01-28 15:42:27"

},
 
...

]},
"responseDetails":null,
"responseStatus":0
}

JSON Reference

Include Page
IETP:JSON ReferenceIETP:
JSON Reference

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
langxml

https://iet-ws.ucdavis.edu/api/iam/orginfo/odr/depts

https://iet-ws.ucdavis.edu/api/iam/orginfo/odr/depts/search

URL Arguments

This section describes the arguments that can be used for search requests.

The value of a CGI argument must always be properly escaped. This can be done via the functional equivalent of JavaScript's encodeURIComponent() method.

Required URL Arguments

The following table lists the required URL arguments.

Argument

Example

Description

key

key=your-key

This argument supplies the application's key. You can sign up for an API key <INSERT LINK HERE>.
It must be a valid key associated with your application. The key is required for this API to implement quality of service rules for this API. If your application is making too many requests it will be throttled to ensure resources are not overloaded during times of peak usage. Also, by supplying a key we can identify and contact you should something go wrong with your application.

v

v=1.0

This argument supplies protocol version number. The only valid value at this point in time is 1.0.

Supported URL arguments

The following table lists the supported URL arguments for each supported URL pattern.

At least one argument should be provided to perform a search. If multiple search criteria are provided an 'AND' search will be performed to match on all arguments.

Response Format

IETP:
Include Page
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
IETP: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 Online Directory department

deptCode

Online Directory unique title code

deptOfficialName

The official name for this department

deptDisplayName

The display name for this department

deptAbbrev

The abbreviation for this department

isUCDHS

Ytrue/Nfalse, is the department an UCDHS department

createDate

The date this record was created in the IAM system.

modifyDate

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

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.

'responseStatus'

Response Codes and

'responseDetails'

Messages

Include Page
IETP:'responseStatus' Response Codes and 'responseDetails' MessagesIETP:'responseStatus'
Response Codes and 'responseDetails' Messages

Troubleshooting

Include Page
IETP:Troubleshooting IET-WS APIsIETP:
Troubleshooting IET-WS APIs
Column
 
Section