GET
/
experience-manager
/
query-rewrites
/
{id}
Get a query rewrite rule
curl --request GET \
  --url https://{FUSION HOST}/api/experience-manager/query-rewrites/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "base_object_id_s": "<string>",
  "createdOn": "2023-11-07T05:31:56Z",
  "deployed": true,
  "doc_type": "<string>",
  "id": "<string>",
  "is_deleted": true,
  "review": "approved",
  "reviewedOn": "2023-11-07T05:31:56Z",
  "reviewer": "<string>",
  "source": "<string>",
  "sourceType": "<string>",
  "tags": [
    "<string>"
  ],
  "updatedOn": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Unique identifier of the query rewrite rule to retrieve.

Query Parameters

context
string
required

Application context for retrieving the query rewrite rule.

staging
boolean
required

Indicates whether to retrieve the query rewrite rule from a staging environment.

Response

200
application/json

Query rewrite rule retrieved successfully.

Represents the response containing details of a query rewrite rule.