POST api/ApplicationList/GetMatchingBuiltIns
Request Information
URI Parameters
None.
Body Parameters
MatchingApplicationRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Hash | string |
None. |
|
| Sha256 | string |
None. |
|
| CertSubject | string |
None. |
|
| Path | string |
None. |
|
| ProcessPath | string |
None. |
|
| CreatedBy | string |
None. |
|
| OrganizationId | globally unique identifier |
None. |
|
| Certs | Collection of ThreatLockerCert |
None. |
|
| CreatedBys | Collection of string |
None. |
|
| OSType | integer |
None. |
|
| Filename | string |
None. |
|
| Folder | string |
None. |
|
| ParentProcessHash | string |
None. |
|
| ParentProcessSha256 | string |
None. |
|
| ParentProcessCerts | Collection of ThreatLockerCert |
None. |
Request Formats
application/json, text/json
Sample:
{
"Hash": "sample string 1",
"Sha256": "sample string 2",
"CertSubject": "sample string 3",
"Path": "sample string 4",
"ProcessPath": "sample string 5",
"CreatedBy": "sample string 6",
"OrganizationId": "af01c574-caab-422a-a56c-64081c5674fa",
"Certs": [
{
"sha": "sample string 1",
"subject": "sample string 2",
"validCert": true,
"isValid": true,
"DigestMismatch": 1
},
{
"sha": "sample string 1",
"subject": "sample string 2",
"validCert": true,
"isValid": true,
"DigestMismatch": 1
}
],
"CreatedBys": [
"sample string 1",
"sample string 2"
],
"OSType": 8,
"Filename": "sample string 9",
"Folder": "sample string 10",
"ParentProcessHash": "sample string 11",
"ParentProcessSha256": "sample string 12",
"ParentProcessCerts": [
{
"sha": "sample string 1",
"subject": "sample string 2",
"validCert": true,
"isValid": true,
"DigestMismatch": 1
},
{
"sha": "sample string 1",
"subject": "sample string 2",
"validCert": true,
"isValid": true,
"DigestMismatch": 1
}
]
}
application/xml, text/xml
Sample:
<MatchingApplicationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ThreatLockerCommon.Models">
<CertSubject>sample string 3</CertSubject>
<Certs>
<ThreatLockerCert>
<DigestMismatch>1</DigestMismatch>
<isValid>true</isValid>
<sha>sample string 1</sha>
<subject>sample string 2</subject>
<validCert>true</validCert>
</ThreatLockerCert>
<ThreatLockerCert>
<DigestMismatch>1</DigestMismatch>
<isValid>true</isValid>
<sha>sample string 1</sha>
<subject>sample string 2</subject>
<validCert>true</validCert>
</ThreatLockerCert>
</Certs>
<CreatedBy>sample string 6</CreatedBy>
<CreatedBys xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</CreatedBys>
<Filename>sample string 9</Filename>
<Folder>sample string 10</Folder>
<Hash>sample string 1</Hash>
<OSType>8</OSType>
<OrganizationId>af01c574-caab-422a-a56c-64081c5674fa</OrganizationId>
<ParentProcessCerts>
<ThreatLockerCert>
<DigestMismatch>1</DigestMismatch>
<isValid>true</isValid>
<sha>sample string 1</sha>
<subject>sample string 2</subject>
<validCert>true</validCert>
</ThreatLockerCert>
<ThreatLockerCert>
<DigestMismatch>1</DigestMismatch>
<isValid>true</isValid>
<sha>sample string 1</sha>
<subject>sample string 2</subject>
<validCert>true</validCert>
</ThreatLockerCert>
</ParentProcessCerts>
<ParentProcessHash>sample string 11</ParentProcessHash>
<ParentProcessSha256>sample string 12</ParentProcessSha256>
<Path>sample string 4</Path>
<ProcessPath>sample string 5</ProcessPath>
<Sha256>sample string 2</Sha256>
</MatchingApplicationRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.