> For the complete documentation index, see [llms.txt](https://cortex-docs.paloaltonetworks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cortex-docs.paloaltonetworks.com/xsiam-api/compliance-controls/assessment-profiles.md).

# Assessment Profiles

Operations for managing assessment profiles

## Get assessment profiles

> An assessment profile uses a standard to run scans on an asset group to check whether the assets adhere to the standard.\
> \
> Retrieve compliance assessment profiles with optional filtering, sorting and pagination.\
> \- The response is concatenated using AND condition (OR is not supported)\
> \- The maximum result set size is >100\
> \- Offset is the zero-based number of assessment profiles from the start of the result set\
> \
> \*\*Required license:\*\* Cortex Cloud Runtime Security or Cortex Cloud Posture Management

```json
{"openapi":"3.0.3","info":{"title":"Compliance Controls API","version":"Cortex XSIAM 3.5"},"tags":[{"name":"Assessment profiles","description":"Operations for managing assessment profiles"}],"servers":[{"url":"https://{tenant}.xdr.{region}.paloaltonetworks.com","description":"Cortex tenant","variables":{"tenant":{"default":"api","description":"Tenant-specific subdomain"},"region":{"default":"us","description":"Deployment region","enum":["us","eu","uk","sg","jp","ca","au","in","gov"]}}}],"security":[{"XDRAuth":[],"XDRAuthToken":[]}],"components":{"securitySchemes":{"XDRAuth":{"type":"apiKey","in":"header","name":"x-xdr-auth-id","description":"API Key ID for authentication"}},"schemas":{"GetAssessmentProfilesRequest":{"type":"object","required":["request_data"],"properties":{"request_data":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/AssessmentProfileFilter"}},"sort":{"$ref":"#/components/schemas/AssessmentProfileSortObject"},"search_from":{"type":"integer","minimum":0,"default":0,"description":"Zero-based index of the first assessment profile to return. Use with `search_to` to page through results. For example, `search_from: 0` starts at the first assessment profile; `search_from: 50` skips the first 50."},"search_to":{"type":"integer","minimum":1,"default":100,"description":"Zero-based index marking the end of the page (exclusive). The response includes assessment profiles from `search_from` up to, but not including, `search_to`. For example, `search_from: 0` and `search_to: 50` returns the first 50 assessment profiles."}}}}},"AssessmentProfileFilter":{"type":"object","properties":{"field":{"type":"string","description":"Identifies the assessment profile field the filter should match. Filters are based on the following keywords:\n- `name`: Assessment profile name\n- `standard_name` : Standard name\n- `description`: Assessment profile description\n- `asset_group_name`: Asset Group name\n- `created_by`: Creator of the assessment profile\n- `modified_by`: Modifier of the assessment profile\n- `id`: Assessment profile ID\n- `report_type`: Report type\n- `standard_id`: Standard ID\n- `creation_time`: Assessment profile's creation time\n- `modification_time`: Assessment profile's modification time\n- `enabled`: Whether the assessment profile is enabled\n- `asset_group_id`: Asset Group ID"},"operator":{"type":"string","description":"Identifies the comparison operator you want to use for this filter. Valid keywords are:\n\n`eq` / `neq` / `contains` / `not_contains`\n\n- `name`, `standard_name`, `description`, `asset_group_name`, `created_by`, `modified_by`, `id`, `report_type`, `standard_id`: String\n\n`gte`, `lte`, `range`, `relative_timestamp`\n- `creation_time`, `modification_time`: Integer in timestamp epoch milliseconds\n\n`in`\n- `enabled`: valid values are `yes` or `no`\n\n`eq` / `neq`\n- `asset_group_id`: String"},"value":{"oneOf":[{"type":"string","description":"When the `field` value is one of the following, the `value` is type string: `name`, `standard_name`, `description`, `asset_group_name`, `created_by`, `modified_by`, `id`, `report_type`, `standard_id`, `asset_group_id`"},{"type":"integer","description":"When the `field` value is one of the following, the `value` is type integer: `creation_time`, `modification_time`"},{"enum":["yes","no"],"description":"When the `field` value is one of the following, the `value` is type enum: `enabled`"}],"description":"Value that this filter must match. The contents of this field will differ depending on the assessment profile `field` that you specified for this filter"}}},"AssessmentProfileSortObject":{"type":"object","properties":{"field":{"type":"string","enum":["name","category","subcategory","creation_time","created_by","modified_by","modified_ts","id","description","standard_name","standard_id","enabled","asset_group_name","modification_time","report_type"],"default":"creation_time","description":"Sort according to this field"},"keyword":{"type":"string","enum":["asc","desc"],"default":"asc","description":"Sort in ascending (`asc`) or descending (`desc`) order"}}},"AssessmentProfilesResponse":{"type":"object","properties":{"reply":{"type":"object","properties":{"total_count":{"type":"integer","description":"Total number of records"},"result_count":{"type":"integer","description":"Number of records matching the filter + paging"},"assessment_profiles":{"type":"array","items":{"$ref":"#/components/schemas/AssessmentProfile"}}}}}},"AssessmentProfile":{"type":"object","properties":{"id":{"type":"string","description":"Assessment profile ID"},"name":{"type":"string","description":"Assessment profile name"},"description":{"type":"string","description":"Description of the assessment profile"},"enabled":{"type":"boolean","description":"Whether the assessment profile is enabled"},"standard_id":{"type":"string","description":"Standard ID"},"standard_name":{"type":"string","description":"Standard name"},"asset_group_id":{"type":"integer","description":"Asset Group ID"},"asset_group_name":{"type":"string","description":"Asset Group name"},"report_type":{"type":"string","description":"Report type"},"report_targets":{"type":"array","items":{"type":"string","format":"email"}},"evaluation_frequency":{"type":"string"},"creation_time":{"type":"string","format":"date-time","description":"Assessment profile creation time"},"modification_time":{"type":"string","format":"date-time","description":"Assessment profile modification time"},"created_by":{"type":"string","description":"Assessment profile creator"},"modified_by":{"type":"string","description":"Assesment profile modified by"}}},"Error":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message"},"err_extra":{"type":"object","description":"Additional error details"}}}}},"ErrorResponse":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message describing what went wrong"},"err_extra":{"type":"object","description":"Additional error details"}},"required":["err_code","err_msg"]}}}},"responses":{"BadRequest":{"description":"Bad request - invalid input parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"Unauthorized":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"Forbidden":{"description":"Access denied - insufficient permissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InternalServerError":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}},"paths":{"/public_api/v1/compliance/get_assessment_profiles":{"post":{"summary":"Get assessment profiles","description":"An assessment profile uses a standard to run scans on an asset group to check whether the assets adhere to the standard.\n\nRetrieve compliance assessment profiles with optional filtering, sorting and pagination.\n- The response is concatenated using AND condition (OR is not supported)\n- The maximum result set size is >100\n- Offset is the zero-based number of assessment profiles from the start of the result set\n\n**Required license:** Cortex Cloud Runtime Security or Cortex Cloud Posture Management","operationId":"getAssessmentProfiles","tags":["Assessment profiles"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GetAssessmentProfilesRequest"}}}},"responses":{"200":{"description":"Successfully retrieved assessment profiles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssessmentProfilesResponse"}}}},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}}}
```

## Get assessment profile by ID

> An assessment profile uses a standard to run scans on an asset group to check whether the assets adhere to the standard.\
> \
> Get details of the assessment profile specified by its ID.\
> \
> \*\*Required license:\*\* Cortex Cloud Runtime Security or Cortex Cloud Posture Management

```json
{"openapi":"3.0.3","info":{"title":"Compliance Controls API","version":"Cortex XSIAM 3.5"},"tags":[{"name":"Assessment profiles","description":"Operations for managing assessment profiles"}],"servers":[{"url":"https://{tenant}.xdr.{region}.paloaltonetworks.com","description":"Cortex tenant","variables":{"tenant":{"default":"api","description":"Tenant-specific subdomain"},"region":{"default":"us","description":"Deployment region","enum":["us","eu","uk","sg","jp","ca","au","in","gov"]}}}],"security":[{"XDRAuth":[],"XDRAuthToken":[]}],"components":{"securitySchemes":{"XDRAuth":{"type":"apiKey","in":"header","name":"x-xdr-auth-id","description":"API Key ID for authentication"}},"schemas":{"AssessmentProfileResponse":{"$ref":"#/components/schemas/AssessmentProfile"},"AssessmentProfile":{"type":"object","properties":{"id":{"type":"string","description":"Assessment profile ID"},"name":{"type":"string","description":"Assessment profile name"},"description":{"type":"string","description":"Description of the assessment profile"},"enabled":{"type":"boolean","description":"Whether the assessment profile is enabled"},"standard_id":{"type":"string","description":"Standard ID"},"standard_name":{"type":"string","description":"Standard name"},"asset_group_id":{"type":"integer","description":"Asset Group ID"},"asset_group_name":{"type":"string","description":"Asset Group name"},"report_type":{"type":"string","description":"Report type"},"report_targets":{"type":"array","items":{"type":"string","format":"email"}},"evaluation_frequency":{"type":"string"},"creation_time":{"type":"string","format":"date-time","description":"Assessment profile creation time"},"modification_time":{"type":"string","format":"date-time","description":"Assessment profile modification time"},"created_by":{"type":"string","description":"Assessment profile creator"},"modified_by":{"type":"string","description":"Assesment profile modified by"}}},"Error":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message"},"err_extra":{"type":"object","description":"Additional error details"}}}}},"ErrorResponse":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message describing what went wrong"},"err_extra":{"type":"object","description":"Additional error details"}},"required":["err_code","err_msg"]}}}},"responses":{"BadRequest":{"description":"Bad request - invalid input parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"Unauthorized":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"Forbidden":{"description":"Access denied - insufficient permissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"NotFound":{"description":"Resource not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"InternalServerError":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}},"paths":{"/public_api/v1/compliance/get_assessment_profile":{"post":{"summary":"Get assessment profile by ID","description":"An assessment profile uses a standard to run scans on an asset group to check whether the assets adhere to the standard.\n\nGet details of the assessment profile specified by its ID.\n\n**Required license:** Cortex Cloud Runtime Security or Cortex Cloud Posture Management","operationId":"getAssessmentProfile","tags":["Assessment profiles"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"request_data":{"type":"object","required":["id"],"properties":{"id":{"type":"string","description":"Assessment profile ID"}}}}}}}},"responses":{"200":{"description":"Successfully retrieved assessment profile","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssessmentProfileResponse"}}}},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"404":{"$ref":"#/components/responses/NotFound"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}}}
```

## Add assessment profile

> Create a custom compliance assessment profile that is tailored to your own business needs and organizational policies.\
> \
> \*\*Required license:\*\* Cortex Cloud Runtime Security or Cortex Cloud Posture Management

```json
{"openapi":"3.0.3","info":{"title":"Compliance Controls API","version":"Cortex XSIAM 3.5"},"tags":[{"name":"Assessment profiles","description":"Operations for managing assessment profiles"}],"servers":[{"url":"https://{tenant}.xdr.{region}.paloaltonetworks.com","description":"Cortex tenant","variables":{"tenant":{"default":"api","description":"Tenant-specific subdomain"},"region":{"default":"us","description":"Deployment region","enum":["us","eu","uk","sg","jp","ca","au","in","gov"]}}}],"security":[{"XDRAuth":[],"XDRAuthToken":[]}],"components":{"securitySchemes":{"XDRAuth":{"type":"apiKey","in":"header","name":"x-xdr-auth-id","description":"API Key ID for authentication"}},"responses":{"BadRequest":{"description":"Bad request - invalid input parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"Unauthorized":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"Forbidden":{"description":"Access denied - insufficient permissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"Conflict":{"description":"Conflict - duplicate resource","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InternalServerError":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"schemas":{"Error":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message"},"err_extra":{"type":"object","description":"Additional error details"}}}}},"ErrorResponse":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message describing what went wrong"},"err_extra":{"type":"object","description":"Additional error details"}},"required":["err_code","err_msg"]}}}}},"paths":{"/public_api/v1/compliance/add_assessment_profile":{"post":{"summary":"Add assessment profile","description":"Create a custom compliance assessment profile that is tailored to your own business needs and organizational policies.\n\n**Required license:** Cortex Cloud Runtime Security or Cortex Cloud Posture Management","operationId":"addAssessmentProfile","tags":["Assessment profiles"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["request_data"],"properties":{"request_data":{"type":"object","required":["profile_name","asset_group_id","standard_id"],"properties":{"profile_name":{"type":"string","description":"Name of the assessment profile"},"asset_group_id":{"type":"string","description":"Asset Group ID"},"standard_id":{"type":"string","description":"Standard ID"},"description":{"type":"string","description":"Description of the assessment profile"},"report_targets":{"type":"array","description":"Assessment profile targets","items":{"type":"string","format":"email"}},"report_type":{"type":"string","description":"Assessment profile repor type. Valid values include:\n- `ALL`\n- `PDF`\n- `CSV`\n- `NONE` ","enum":["ALL","PDF","CSV","NONE"]},"evaluation_frequency":{"type":"string","description":"Assessment report evaluation frequency","format":"cron"}}}}}}}},"responses":{"200":{"description":"Successfully created assessment profile","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Whether the assessment profile creation succeeded"}}}}}},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"409":{"$ref":"#/components/responses/Conflict"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}}}
```

## Edit assessment profile

> Edit an existing compliance custom assessment profile.\
> \
> \*\*Required license:\*\* Cortex Cloud Runtime Security or Cortex Cloud Posture Management

```json
{"openapi":"3.0.3","info":{"title":"Compliance Controls API","version":"Cortex XSIAM 3.5"},"tags":[{"name":"Assessment profiles","description":"Operations for managing assessment profiles"}],"servers":[{"url":"https://{tenant}.xdr.{region}.paloaltonetworks.com","description":"Cortex tenant","variables":{"tenant":{"default":"api","description":"Tenant-specific subdomain"},"region":{"default":"us","description":"Deployment region","enum":["us","eu","uk","sg","jp","ca","au","in","gov"]}}}],"security":[{"XDRAuth":[],"XDRAuthToken":[]}],"components":{"securitySchemes":{"XDRAuth":{"type":"apiKey","in":"header","name":"x-xdr-auth-id","description":"API Key ID for authentication"}},"schemas":{"EditAssessmentProfileRequest":{"type":"object","required":["request_data"],"properties":{"request_data":{"type":"object","required":["id"],"properties":{"id":{"type":"string","description":"Assessment profile ID"},"enabled":{"oneOf":[{"type":"string","enum":["yes","no"],"description":"Whether the assessment profile is enabled. Valid values are:\n- `yes`\n- `no`"},{"type":"boolean","description":"Whether the assessment profile is enabled"}],"description":"Enable or disable the assessment profile"},"profile_name":{"type":"string","description":"Name of the assessment profile"},"description":{"type":"string","description":"Description of the assessment profile"},"report_targets":{"type":"array","description":"List of email addresses for reports","items":{"type":"string","format":"email"}},"report_type":{"type":"string","enum":["ALL","PDF","CSV","NONE"],"description":"Type of reporting. Valid values include:\n- `ALL`\n- `PDF`\n- `CSV`\n- `NONE`"},"evaluation_frequency":{"type":"string","description":"Cron expression for assessment report evaluation frequency","format":"cron"},"asset_group_id":{"type":"integer","description":"Asset group ID"},"standard_id":{"type":"string","description":"Compliance standard ID"}}}}},"Error":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message"},"err_extra":{"type":"object","description":"Additional error details"}}}}},"ErrorResponse":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message describing what went wrong"},"err_extra":{"type":"object","description":"Additional error details"}},"required":["err_code","err_msg"]}}}},"responses":{"BadRequest":{"description":"Bad request - invalid input parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"Unauthorized":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"Forbidden":{"description":"Access denied - insufficient permissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"NotFound":{"description":"Resource not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"Conflict":{"description":"Conflict - duplicate resource","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InternalServerError":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}},"paths":{"/public_api/v1/compliance/edit_assessment_profile":{"post":{"summary":"Edit assessment profile","description":"Edit an existing compliance custom assessment profile.\n\n**Required license:** Cortex Cloud Runtime Security or Cortex Cloud Posture Management","operationId":"editAssessmentProfile","tags":["Assessment profiles"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"":{"$ref":"#/components/schemas/EditAssessmentProfileRequest"}}}}}},"responses":{"200":{"description":"Successfully updated assessment profile","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean"}}}}}},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"404":{"$ref":"#/components/responses/NotFound"},"409":{"$ref":"#/components/responses/Conflict"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}}}
```

## Delete assessment profile

> Delete an assessment profile specified by its ID.\
> \
> \*\*Required license:\*\* Cortex Cloud Runtime Security or Cortex Cloud Posture Management

```json
{"openapi":"3.0.3","info":{"title":"Compliance Controls API","version":"Cortex XSIAM 3.5"},"tags":[{"name":"Assessment profiles","description":"Operations for managing assessment profiles"}],"servers":[{"url":"https://{tenant}.xdr.{region}.paloaltonetworks.com","description":"Cortex tenant","variables":{"tenant":{"default":"api","description":"Tenant-specific subdomain"},"region":{"default":"us","description":"Deployment region","enum":["us","eu","uk","sg","jp","ca","au","in","gov"]}}}],"security":[{"XDRAuth":[],"XDRAuthToken":[]}],"components":{"securitySchemes":{"XDRAuth":{"type":"apiKey","in":"header","name":"x-xdr-auth-id","description":"API Key ID for authentication"}},"responses":{"BadRequest":{"description":"Bad request - invalid input parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"Unauthorized":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"Forbidden":{"description":"Access denied - insufficient permissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"NotFound":{"description":"Resource not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"InternalServerError":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"schemas":{"Error":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message"},"err_extra":{"type":"object","description":"Additional error details"}}}}},"ErrorResponse":{"type":"object","properties":{"reply":{"type":"object","properties":{"err_code":{"type":"integer","description":"Error code"},"err_msg":{"type":"string","description":"Error message describing what went wrong"},"err_extra":{"type":"object","description":"Additional error details"}},"required":["err_code","err_msg"]}}}}},"paths":{"/public_api/v1/compliance/delete_assessment_profile":{"post":{"summary":"Delete assessment profile","description":"Delete an assessment profile specified by its ID.\n\n**Required license:** Cortex Cloud Runtime Security or Cortex Cloud Posture Management","operationId":"deleteAssessmentProfile","tags":["Assessment profiles"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["request_data"],"properties":{"request_data":{"type":"object","required":["id"],"properties":{"id":{"type":"string","description":"Assessment profile ID"}}}}}}}},"responses":{"200":{"description":"Successfully deleted assessment profile","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Whether the assessment profile deletion succeeded"}}}}}},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"404":{"$ref":"#/components/responses/NotFound"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://cortex-docs.paloaltonetworks.com/xsiam-api/compliance-controls/assessment-profiles.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
