Creates or updates configuration properties that are provided in the input.

put

/config/property/v1

Returns created or updated properties.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/xml ()
Root Schema : schema
Type: array
The object is used to create or update Config Properties.
Show Source
Nested Schema : NameValPair
Type: object
Name-value pair which can be used generically.
Show Source
Request Body - application/json ()
Root Schema : schema
Type: array
The object is used to create or update Config Properties.
Show Source
Nested Schema : NameValPair
Type: object
Name-value pair which can be used generically.
Show Source
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : ConfigPropertiesResponse
Type: array
Contains Congfig Properties that are returned from API.
Show Source
Nested Schema : NameValSource
Type: object
Name-value and source of the property.
Show Source

406 Response

Incorrect Data
Body ()
Root Schema : ConfigAPIResponse
Type: object
Show Source
Back to Top

Examples

The following example shows a sample request and response for creating or updating the configuration properties specified in the input.

cURL Command to Create and Update the Configuration Property in JSON Format

curl --location --request PUT '<OAAService>/policy/config/property/v1' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \
--data '[
    {
        "name": "bharosa.uio.default.challenge.type.enum.ChallengeEmail.fromAddress",
        "value": "security@example.com"
    }
]’

Sample Response in JSON Format

[
    {
        "name": "bharosa.uio.default.challenge.type.enum.ChallengeEmail.fromAddress",
        "value": "security@example.com",
        "source": "database"
    }
]

cURL Command to Create and Update the Configuration Property in XML Format

curl --location --request PUT '<OAAService>/policy/config/property/v1' \
--header 'Content-Type: application/xml' \
--header 'Accept: application/xml' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \
--data '<?xml version="1.0" encoding="UTF-8" ?>
<List>
    <NameValPair>
        <name>bharosa.uio.default.challenge.type.enum.ChallengeEmail.fromAddress</name>
        <value>security@example.com</value>
    </NameValPair>
</List>'

Sample Response in XML Format

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ConfigPropertiesResponse>
    <NameValSource>
        <name>bharosa.uio.default.challenge.type.enum.ChallengeEmail.fromAddress</name>
        <value>security@example.com</value>
        <source>database</source>
    </NameValSource>
</ConfigPropertiesResponse>
Back to Top