• Approval
  • Customer
  • Customer Request
  • Customer Transition
  • Jira Service Management Application
  • Organization
  • Organization Service Desk
  • Portals
  • Queue
  • Queue Settings
  • Request Attachment
  • Request Type
  • Request Type Permissions
  • Service Desk
  • Service Desk Customer
  • application-properties
  • applicationrole
  • attachment
  • avatar
  • cluster
  • comment
  • component
  • configuration
  • customFieldOption
  • customFields
  • dashboard
  • email-templates
  • field
  • filter
  • group
  • groups
  • groupuserpicker
  • index
  • index-snapshot
  • issue
  • issueLinkType
  • issuesecurityschemes
  • issuetype
  • issuetypescheme
  • jql
  • licenseValidator
  • monitoring
  • mypermissions
  • mypreferences
  • myself
  • notificationscheme
  • password
  • permissions
  • permissionscheme
  • priority
  • priorityschemes
  • project
  • projectCategory
  • projects
  • projectvalidate
  • reindex
  • resolution
  • role
  • screens
  • securitylevel
  • serverInfo
  • session
  • settings
  • status
  • statuscategory
  • terminology
  • universal_avatar
  • upgrade
  • user
  • version
  • websudo
  • workflow
  • workflowscheme
  • worklog
  • Assets - AQL
  • Assets - Analytics
  • Assets - Archived Objects
  • Assets - Attachments
  • Assets - Comments
  • Assets - Icons
  • Assets - Index Configuration
  • Assets - Object
  • Assets - Object Archive
  • Assets - Object Attribute
  • Assets - Object Connected Tickets
  • Assets - Object Restore
  • Assets - Object Schema
  • Assets - Object Type
  • Assets - Object Type Attribute
  • Assets - Progress
  • Assets - QR Code
  • Assets - Status Types
Server
Jira Service Management / Reference / REST API

Assets - Object Type Attribute

Postman Collection
OpenAPI
DEL

Delete an object type attribute

Delete a single object type attribute.

Request

Path parameters

id

string

Required

Responses

The object type attribute was deleted.

application/json

any

DEL/assets/1.0/objecttypeattribute/{id}
1 2 3 curl --request DELETE \ --url 'http://{baseurl}/rest/assets/1.0/objecttypeattribute/{id}' \ --header 'Accept: application/json'
POST

Store an object type attribute

Store an object type attribute.

Request

Path parameters

objectTypeId

string

Required

Request bodyapplication/json

The object type attribute to store.

expand

string

project

string

position

string

after

string

id

integer

name

string

label

string

description

string

type

integer

Required
defaultTypeId

integer

Responses

Returns the stored object type attribute.

application/json

ObjectTypeAttributeEntry
POST/assets/1.0/objecttypeattribute/{objectTypeId}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 curl --request POST \ --url 'http://{baseurl}/rest/assets/1.0/objecttypeattribute/{objectTypeId}' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "expand": "<string>", "project": "<string>", "position": "<string>", "after": "<string>", "id": 2154, "name": "<string>", "label": "<string>", "description": "<string>", "type": 2154, "defaultTypeId": 2154, "typeValue": "<string>", "typeValueMulti": [ "<string>" ], "additionalValue": "<string>", "minimumCardinality": 2154, "maximumCardinality": 2154, "removeExcessCardinality": true, "suffix": "<string>", "hidden": "<string>", "includeChildObjectTypes": "<string>", "uniqueAttribute": "<string>", "summable": "<string>", "indexed": "<string>", "regexValidation": "<string>", "qlQuery": "<string>", "options": "<string>", "iql": "<string>" }'
201Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59