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
borderStylesolid
titleIn this Section
borderStylesolid
Table of Contents
indent15px
stylenone




Column

Overview

API Requirements

Include Page
IETP:API RequirementsIETP:
API Requirements

Getting Started

As of version 1.0.8 of the IAM APIs (after UCPath), this API is deprecated.

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/hs/costcenters/search?orgOId=ACEB2B11B917B854E040EDA9A7C2364F&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":
[{
orgOId: "ABAC3BDDCA2C76B3E040EDA9A9C29D5F",
costCenterCode: "H 1009675",
costCenterOfficialName: "Neuro Monitoring Service",
costCenterDisplayName: "Neuro Monitoring Service",
costCenterAbbrev: "NeurMonSvc",
createDate: "2011-08-29 14:03:59",
modifyDate: "2013-01-28 15:37:27"

}]
},
"responseDetails":"Successfully Processed Request.",
"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

https://iet-ws.ucdavis.edu/api/iam/orginfo/hs/costcenters
https://iet-ws.ucdavis.edu/api/iam/orginfo/hs/costcenters/search

URL Arguments

Include Page
IETP:URL ArgumentsIETP:
URL Arguments
Required URL Arguments
Include Page
IETP:Required URL ArgumentsIETP:
Required URL Arguments
Supported URL arguments

Include Page

IETP:

Supported URL Arguments

IETP:

Supported URL Arguments

URL

Supported Arguments

https://iet-ws.ucdavis.edu/api/iam/orginfo/hs/costcenters/search

orgOId
costCenterCode

Response Format

Include Page
IETP:Response Format for IET-WS APIsIETP:
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 HS cost center

costCenterCode

UCDHS Peoplesoft unique cost center code

costCenterOfficialName

Cost center official name

costCenterDisplayName

Cost center display name

costCenterAbbrev

Cost center abbreviation

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' Codes and 'responseDetails' Messages

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

Troubleshooting

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


...