Get a tag instance

get

/api/boss/data/objects/ora/cxServiceCore/common/v1/tags/{tags_id}

Request

Path Parameters
  • This path parameter maps to the following field defined in the Tags REST resource:
    1. value: The name of the tag.
Query Parameters
  • Effective date value in the ISO 8601 date format 'YYYY-MM-DD'. This date is required by business logic to search for effective-dated business objects.
  • Restricts the resource fields. Only the specified fields and mandatory system fields are returned.

There's no request body for this operation.

Back to Top

Response

Default Response

A single item response
Body ()
Root Schema : tags_item-response
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.
  • __busObj_context
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

Examples

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

cURL Command

curl -X GET --location 'https://servername.fa.us2.oraclecloud.com/api/boss/data/objects/ora/cxServieCore/common/vi/tags/BOSS_CREATETAG' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>

Example of Response Body

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

{
    "id": "300100572685592",
    "value": "BOSS_CREATETAG",
    "administratorCreatedFlag": false,
    "createdBy": "albert.truong@oracle.com",
    "timeCreated": "2023-03-19T21:01:18.82022Z",
    "$id": "300100572685592",
    "$context": {
        "etag": "1",
        "links": {
            "$self": {
                "href": "https://servername.fa.us2.oraclecloud.com/api/boss/data/objects/ora/cxServiceCore/common/v1:17/tags/300100572685592"
            }
        }
    }
}
Back to Top