Contents

PolicyAssignmentQueryResponse

The response returned by the Query Rejection Reasons endpoint.

Declaration

object PolicyAssignmentQueryResponse

Properties

NameTypeDescription
result[BrandRejectionReasonResponse]

The list of policy assignment records with rejection reason details. See BrandRejectionReasonResponse. Read-only.

paginationQueryPaginationResult

Pagination metadata including totalCount, offset, and pageSize. See QueryPaginationResult. Read-only.

errorError

Error information if the request encountered an error. See Error. Read-only.

Discussion

The PolicyAssignmentQueryResponse object extends the standard QueryResponse envelope. The result array contains BrandRejectionReasonResponse objects, each describing a policy assignment with rejection reason details for a brand entity.

Example

{
  "result": [
    {
      "id": 555666777,
      "promotedObjectId": "123456789",
      "promotedObjectType": "BUSINESS_BRAND",
      "entityId": "987654321",
      "entityType": "BUSINESS_BRAND",
      "componentType": "ENTITY_ASSET",
      "component": "3135832a-0645-5b84-a030-36394cbdbcf6",
      "code": "PERSONAL_INFORMATION",
      "title": "Personal Information",
      "body": "Content containing personally identifiable information is not allowed."
    }
  ],
  "pagination": {
    "offset": 0,
    "pageSize": 20,
    "totalCount": 1
  }
}

See Also