Create a service request tag

post

/api/boss/data/objects/ora/cxServiceCore/srMgmt/v1/serviceRequestTags

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 : oraCxServiceCoreSrMgmt.ServiceRequestTag_post-item
Match All
Show Source
Nested Schema : oraCxServiceCoreSrMgmt.ServiceRequestTag_item
Match All
Show Source
Nested Schema : oraCxServiceCoreCommon.ObjectTag_post-item
Match All
Show Source
Nested Schema : oraCxServiceCoreCommon.ObjectTag_item
Match All
Show Source
Nested Schema : Service Request Tag
Type: object
Title: Service Request Tag
Service request tags are keywords or terms assigned to a service request that help in describing and classifying the service request.
Show Source
Nested Schema : oraCxServiceCoreCommon.ObjectTag_abstract-item
Type: object
Show Source
Nested Schema : oraCxServiceCoreSrMgmt.ServiceRequestTag_item-allOf[2]
Type: object
Show Source
Nested Schema : Object Tag
Type: object
Title: Object Tag
The objectTags resource is used to manage the tags of objects.
Show Source
Nested Schema : oraCxServiceCoreCommon.ObjectTag_post-item-allOf[1]
Type: object
Show Source
Nested Schema : oraCxServiceCoreSrMgmt.ServiceRequestTag_post-item-allOf[2]
Type: object
Show Source
Nested Schema : __busObj_context
Type: object
Show Source
Nested Schema : serviceRequest
Match All
Show Source
Nested Schema : Service Request
Type: object
Title: Service Request
A service request is a document to track a request from a worker for a service from the time the worker makes the request until the request is resolved.
Show Source
  • Title: Created By
    Read Only: true
    The user who created the record.
  • Title: Service Request ID
    Read Only: true
    The unique identifier of the service request record.
  • Title: Reference Number
    Read Only: true
    The unique number that's used to identify a service request. You can edit the service request number to a format that's best suitable to your organizational requirements.
  • Title: Created On
    Read Only: true
    The date and time when the record was created.
Nested Schema : $context
Type: object
Show Source
Nested Schema : tag
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 : tag
Match One Schema
Show Source
Nested Schema : tag-oneOf[0]
Type: object
Show Source
Nested Schema : tag-oneOf[1]
Type: object
Show Source
Nested Schema : serviceRequest
Match One Schema
Show Source
Nested Schema : serviceRequest-oneOf[0]
Type: object
Show Source
Nested Schema : serviceRequest-oneOf[1]
Type: object
Show Source
  • Title: Reference Number
    Read Only: true
    The unique number that's used to identify a service request. You can edit the service request number to a format that's best suitable to your organizational requirements.
Back to Top

Response

Default Response

no content
Back to Top

Examples

The following example shows how to create a service request 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/cxServiceCore/srMgmt/v1/serviceRequestTags/' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{{
    "serviceRequest": {
        "number": SR0000052105
    },
    "tag": {
        "value": OTBI_Tag1
    }
}'

Example of Request Body

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

{
    "serviceRequest": {
        "number": SR0000052105
    },
    "tag": {
        "value": OTBI_Tag1
    }
}

Response: 201 Created

Back to Top