Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
Some information in this article relates to a prereleased product which may be substantially modified before it's commercially released. Microsoft makes no warranties, expressed or implied, with respect to the information provided here.
API description
List live response library files.
Tip
You can also view and manage live response files from the Library management page in the Microsoft Defender portal.
Limitations
Rate limitations for this API are 100 calls per minute and 1,500 calls per hour.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Get started.
| Permission type | Permission | Permission display name |
|---|---|---|
| Application | Library.Manage | Manage live response library |
| Delegated (work or school account) | Library.Manage | Manage live response library |
HTTP request
GET https://api.security.microsoft.com/api/libraryfiles
Request headers
| Name | Type | Description |
|---|---|---|
| Authorization | String | Bearer {token}. Required. |
Request body
Empty
Response
If successful, this method returns 200 - OK response code with a collection of live response library file entities.
Example
Request example
Here's an example of a request that gets all live response library files.
GET https://api.security.microsoft.com/api/libraryfiles
Response example
Here's an example of the response.
HTTP/1.1 200 Ok
Content-type: application/json
{
"\@odata.context": "https://api.security.microsoft.com
/api/\$metadata\#LibraryFiles",
"value": [
{
"fileName": "script1.ps1",
"sha256": "6e212a0db618507c44e4ec8ee7499dfef7e5767e5f8d31144df3b96fd1145caf",
"description": null,
"creationTime": "2019-10-24T10:54:23.2009016Z",
"lastUpdatedTime": "2019-10-24T10:54:23.2009016Z",
"createdBy": "admin",
"hasParameters": true,
"parametersDescription": "test"
},
{
"fileName": "script.sh",
"sha256": "d0f3e3b0641dbf88ee39c822516e81a909d1d06d22341dd9b1f12aa5e5c027a2",
"description": null,
"creationTime": "2018-10-24T11:15:35.3688259Z",
"lastUpdatedTime": "2018-10-24T11:15:35.3688259Z",
"createdBy": "username",
"hasParameters": false
},
{
"fileName": "memdump.exe",
"sha256": "fa70b87730290c0d30fe255d1dfb65de82f96286ebfeeb1d88ed3cc831329825",
"description": "Process memory dump",
"creationTime": "2018-10-24T10:54:23.2009016Z",
"lastUpdatedTime": "2018-10-24T10:54:23.2009016Z",
"createdBy": "admin",
"hasParameters": false
}
]
}