Create a tag instance

post

/api/boss/data/objects/ora/cxServiceCore/common/v1/tags

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : schema
Match All
Show Source
Nested Schema : oraCxServiceCoreCommon.Tag_post-item
Match All
Show Source
  • Tag
    Title: Tag
    Service request tags are used to manage keywords or terms assigned to a service request. Service request tags help in describing and classifying a service request.
Nested Schema : Tag
Type: object
Title: Tag
Service request tags are used to manage keywords or terms assigned to a service request. Service request tags help in describing and classifying a service request.
Show Source
Nested Schema : __busObj_context
Type: object
Show Source
Nested Schema : $context
Type: object
Show Source
Back to Top

Response

Default Response

no content
Back to Top

Examples

The following example shows how to create tag by submitting a POST request on the REST resource.

cURL Command

curl -X POST --location 'https://servername.fa.us2.oraclecloud.com/api/boss/data/objects/ora/cxServieCore/common/v1/tags/' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
"value": "BOSS_CREATETAG",
"administratorCreatedFlag": false
}'

Example of Request Body

The following example shows the contents of the request body in JSON format.

{
"value": "BOSS_CREATETAG",
"administratorCreatedFlag": false
}

Response: 201 Created

Back to Top