IBM Maximo: Dicas de APIs Rest: Difference between revisions
(→URLs) |
No edit summary |
||
Line 11: | Line 11: | ||
* [[IBM Maximo: Get the attributes of Object Structures using REST API]] | * [[IBM Maximo: Get the attributes of Object Structures using REST API]] | ||
== Headers == | |||
{| class="wikitable sortable" | |||
|- | |||
! Key !! Value!! Description | |||
|- | |||
| maxauth || base64(username:password) || Username and Password encoded as base64 | |||
|- | |||
| Content-Type || application/json || Example | |||
|- | |||
| Accept || application/json || Example | |||
|} | |||
== Parameters == | |||
{| class="wikitable sortable" | |||
|- | |||
! Key !! Value!! Description | |||
|- | |||
| lean || 1 || Username and Password encoded as base64 | |||
|- | |||
| oslc.select || - || Fields to retrieve. Sample: intobjectname,description,rel.maxintobjdetail{objectname,hierarchypath} | |||
|- | |||
| oslc.pageSize || - || Page size. Sample: 1001 | |||
|- | |||
| oslc.where || application/json || Where clause. Sample: usewith='INTEGRATION' | |||
|} | |||
= Ver também = | = Ver também = |
Revision as of 15:38, 25 January 2022
Documento em Rascunho (Draft)
URLs
/maximo/oslc/os/MXINTOBJECT
/maximo/oslc/os/MXOBJECTCFG
Headers
Key | Value | Description |
---|---|---|
maxauth | base64(username:password) | Username and Password encoded as base64 |
Content-Type | application/json | Example |
Accept | application/json | Example |
Parameters
Key | Value | Description |
---|---|---|
lean | 1 | Username and Password encoded as base64 |
oslc.select | - | Fields to retrieve. Sample: intobjectname,description,rel.maxintobjdetail{objectname,hierarchypath} |
oslc.pageSize | - | Page size. Sample: 1001 |
oslc.where | application/json | Where clause. Sample: usewith='INTEGRATION' |