UiPath Documentation
orchestrator
2023.10
false
Orchestrator API guide

Libraries requests

Sample API requests and responses for querying libraries by author and other filters via the Libraries OData endpoint.

Retrieving libraries from a specific author

GET

https://{yourDomain}/odata/Libraries?$filter=Authors%20eq%20'madalina.boboc'

Request headers

KeyValue
AuthorizationBearer

Response code

200 OK

Response body

{
  "@odata.context": "https://{yourDomain}/odata/$metadata#Libraries",
  "@odata.count": 1,
  "value": [
    {
      "Title": null,
      "Version": "1.0.6666.26742",
      "Key": "processing_items:1.0.6666.26742",
      "Description": "Blank Project",
      "Published": "2018-10-11T16:45:28.6265116Z",
      "IsLatestVersion": true,
      "OldVersion": null,
      "ReleaseNotes": null,
      "Authors": "madalina.boboc",
      "Id": "processing_items"
    }
  ]
}
{
  "@odata.context": "https://{yourDomain}/odata/$metadata#Libraries",
  "@odata.count": 1,
  "value": [
    {
      "Title": null,
      "Version": "1.0.6666.26742",
      "Key": "processing_items:1.0.6666.26742",
      "Description": "Blank Project",
      "Published": "2018-10-11T16:45:28.6265116Z",
      "IsLatestVersion": true,
      "OldVersion": null,
      "ReleaseNotes": null,
      "Authors": "madalina.boboc",
      "Id": "processing_items"
    }
  ]
}

Deleting a library

Note:

Please note that only host administrators can delete libraries.

DELETE

https://{yourDomain}/odata/Libraries('BlankLibraryProj')

Request headers

KeyValue
AuthorizationBearer

Response code

200 OK

  • Retrieving libraries from a specific author
  • Request headers
  • Response code
  • Response body
  • Deleting a library
  • Request headers
  • Response code

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated