Exports

Extracting data from RealCADENCE is fast and easy with SKI based APIs. They follow the SKI pattern for pinpointing the object context and that makes them easy to consume.

exports/objects

GET   exports/objects/USERS

Example
curl --request GET \
  --url 'https://myhostname/exports/object/USERS?format=xml&=' \
  --header 'x-api-key: 987654321'
format json | skinny | xml

GET   exports/objects/LOCATIONS

Example
curl --request GET \
  --url 'https://myhostname/exports/object/LOCATIONS?format=xml&=' \
  --header 'x-api-key: 987654321'
format json | skinny | xml

GET   exports/objects/LOCATIONGROUPS

Example
curl --request GET \
  --url 'https://myhostname/exports/object/LOCATIONGROUPS?format=xml&=' \
  --header 'x-api-key: 987654321'
format json | skinny | xml

GET   exports/objects/LOCATIONGROUPSUSERS

Example
curl --request GET \
  --url 'https://myhostname/exports/object/LOCATIONGROUPSUSERS?format=xml&=' \
  --header 'x-api-key: 987654321'
format json | skinny | xml

GET   exports/objects/FORMATS

Example
curl --request GET \
  --url 'https://myhostname/exports/object/FORMATS?format=xml&=' \
  --header 'x-api-key: 987654321'
format json | skinny | xml

 

exports/extractForDate

Extract Action status, evidence and notes data per for a given date.
Follows the pattern:

https:// [host] / [operation] / [context] / [item-type] / [date] ? [parameters]

GET   exports/extractForDate/ACTIONS

Example
curl --request GET \
  --url 'https://myhostname/exports/extractForDate/ACTIONS/2020-06-29?format=xml&=' \
  --header 'x-api-key: 987654321'
format json | skinny | xml

GET   exports/extractForDate/ACTIONEVIDENCE

Example
curl --request GET \
  --url 'https://myhostname/exports/extractForDate/ACTIONEVIDENCE/2020-06-29?format=xml&=' \
  --header 'x-api-key: 987654321'
format json | skinny | xml

GET   exports/extractForDate/ACTIONNOTES

Example
curl --request GET \
  --url 'https://myhostname/exports/extractForDate/ACTIONNOTES/2020-06-29?format=xml&=' \
  --header 'x-api-key: 987654321'
format json | skinny | xml