# Libraries requests

> GET

## Retrieving libraries from a specific author

GET

`{AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_/odata/Libraries?$filter=Authors%20eq%20'madalina.boboc'`

### Request headers

| Key | Value |
| --- | --- |
| Authorization | Bearer |

### Response code

200 OK

### Response body

```
{
  "@odata.context": "{AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_/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

`{AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_/odata/Libraries('BlankLibraryProj')`

### Request headers

| Key | Value |
| --- | --- |
| Authorization | Bearer |

### Response code

200 OK
