Gets all policies for the given assurance level

get

/oaa-policy/policy/v1

Request

Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Retrieves polices of a given assurance level.
Body ()
Root Schema : AllPolicyResponse
Type: object
Show Source
Nested Schema : policies
Type: array
Show Source
Nested Schema : schema
Type: object
Policy object for creating, modifying and fetching policy.
Show Source

401 Response

Unauthorized

405 Response

Invalid input
Body ()
Root Schema : AllPolicyResponse
Type: object
Show Source
Nested Schema : policies
Type: array
Show Source
Nested Schema : schema
Type: object
Policy object for creating, modifying and fetching policy.
Show Source

500 Response

Internal server error

503 Response

Service Unavailable
Back to Top

Examples

The following example shows a sample request and response for retrieving all policies for the assurance level.

cURL Command to Retrieve All Policies in JSON Format

curl --location --request GET '<PolicyUrl>/oaa-policy/policy/v1?levelId=AssuranceLevel1' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'

Sample Response in JSON Format

{
    "status": "200",
    "message": "Policy information.",
    "policies": [
        {
            "agentgid": "dede64d3-1d6a-42e9-89e1-714e88f8967c",
            "assuranceLevelId": "AssuranceLevel1",
            "name": "Policy1 Update",
            "description": "Policy for AssuranceLevel1 Update",
            "status": "ACTIVE",
            "scoringEngine": "Average",
            "weight": 100,
            "policygid": "141_73875f1eda644e4196248e5ecc824364c5a6c1954350a9927942c6d50c4ed171"
        }
    ]
}

cURL Command to Retrieve All Policies in XML Format

curl --location --request GET '<PolicyUrl>/oaa-policy/policy/v1?levelId=AssuranceLevel1' \
--header 'Content-Type: application/xml' \
--header 'Accept: application/xml' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'

Sample Response in XML Format

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <AllPolicyResponse>
     <status>200</status>
     <message>Policy information.</message>
     <policies>
         <agentgid>dede64d3-1d6a-42e9-89e1-714e88f8967c</agentgid>
         <assuranceLevelId>AssuranceLevel1</assuranceLevelId>
         <name>Policy1 Update</name>
         <description>Policy for AssuranceLevel1 Update</description>
         <status>ACTIVE</status>
         <scoringEngine>Average</scoringEngine>
         <weight>100</weight>
         <policygid>141_73875f1eda644e4196248e5ecc824364c5a6c1954350a9927942c6d50c4ed171</policygid>
     </policies>
 </AllPolicyResponse>
Back to Top