Change the position of an object type in the object type hierarchy tree.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredThe new position of the object type.
integer
integer
Returns the updated object type.
1
2
3
4
5
6
7
8
curl --request POST \
--url 'http://{baseurl}/rest/assets/1.0/objecttype/{affectedId}/position' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"toObjectTypeId": 2154,
"position": 2154
}'
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
{
"id": 2154,
"name": "<string>",
"type": 2154,
"description": "<string>",
"icon": {
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
},
"position": 2154,
"created": "<string>",
"updated": "<string>",
"objectCount": 2154,
"parentObjectTypeId": 2154,
"objectSchemaId": 2154,
"inherited": true,
"abstractObjectType": true,
"parentObjectTypeInherited": true
}
Create a new object type.
Forge and OAuth2 apps cannot access this REST resource.
The new object type to create.
integer
string
string
integer
integer
integer
boolean
boolean
Returns the created object type.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
curl --request POST \
--url 'http://{baseurl}/rest/assets/1.0/objecttype/create' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"id": 2154,
"name": "<string>",
"description": "<string>",
"iconId": 2154,
"objectSchemaId": 2154,
"parentObjectTypeId": 2154,
"inherited": true,
"abstractObjectType": true
}'
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
{
"id": 2154,
"name": "<string>",
"type": 2154,
"description": "<string>",
"icon": {
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
},
"position": 2154,
"created": "<string>",
"updated": "<string>",
"objectCount": 2154,
"parentObjectTypeId": 2154,
"objectSchemaId": 2154,
"inherited": true,
"abstractObjectType": true,
"parentObjectTypeInherited": true
}
Get a single object type.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturns the requested object type.
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/assets/1.0/objecttype/{id}' \
--header 'Accept: application/json'
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
{
"id": 2154,
"name": "<string>",
"type": 2154,
"description": "<string>",
"icon": {
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
},
"position": 2154,
"created": "<string>",
"updated": "<string>",
"objectCount": 2154,
"parentObjectTypeId": 2154,
"objectSchemaId": 2154,
"inherited": true,
"abstractObjectType": true,
"parentObjectTypeInherited": true
}
Update an existing object type.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredThe object type to update.
integer
string
string
integer
integer
integer
boolean
boolean
Returns the updated object type.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
curl --request PUT \
--url 'http://{baseurl}/rest/assets/1.0/objecttype/{id}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"id": 2154,
"name": "<string>",
"description": "<string>",
"iconId": 2154,
"objectSchemaId": 2154,
"parentObjectTypeId": 2154,
"inherited": true,
"abstractObjectType": true
}'
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
{
"id": 2154,
"name": "<string>",
"type": 2154,
"description": "<string>",
"icon": {
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
},
"position": 2154,
"created": "<string>",
"updated": "<string>",
"objectCount": 2154,
"parentObjectTypeId": 2154,
"objectSchemaId": 2154,
"inherited": true,
"abstractObjectType": true,
"parentObjectTypeInherited": true
}
Delete an object type.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturns the deleted object type.
1
2
3
curl --request DELETE \
--url 'http://{baseurl}/rest/assets/1.0/objecttype/{id}' \
--header 'Accept: application/json'
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
{
"id": 2154,
"name": "<string>",
"type": 2154,
"description": "<string>",
"icon": {
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
},
"position": 2154,
"created": "<string>",
"updated": "<string>",
"objectCount": 2154,
"parentObjectTypeId": 2154,
"objectSchemaId": 2154,
"inherited": true,
"abstractObjectType": true,
"parentObjectTypeInherited": true
}
Find all object type attributes for this object type.
Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
string
string
string
string
string
string
Returns a list of object type attributes.
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/assets/1.0/objecttype/{id}/attributes' \
--header 'Accept: application/json'
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"id": 2154,
"objectType": {
"id": 2154,
"name": "<string>",
"type": 2154,
"description": "<string>",
"icon": {
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
},
"position": 2154,
"created": "<string>",
"updated": "<string>",
"objectCount": 2154,
"parentObjectTypeId": 2154,
"objectSchemaId": 2154,
"inherited": true,
"abstractObjectType": true,
"parentObjectTypeInherited": true
},
"name": "<string>",
"label": true,
"type": 2154,
"description": "<string>",
"defaultType": {
"id": 2154,
"name": "<string>"
},
"typeValue": "<string>",
"typeValueMulti": [
"<string>"
],
"additionalValue": "<string>",
"referenceType": {
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"description": "<string>",
"color": "<string>",
"url16": "<string>",
"removable": true,
"objectSchemaId": 2154
},
"referenceObjectTypeId": 2154,
"referenceObjectType": {
"id": 2154,
"name": "<string>",
"type": 2154,
"description": "<string>",
"icon": {
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
},
"position": 2154,
"created": "<string>",
"updated": "<string>",
"objectCount": 2154,
"parentObjectTypeId": 2154,
"objectSchemaId": 2154,
"inherited": true,
"abstractObjectType": true,
"parentObjectTypeInherited": true
},
"confluenceTypeValue": {
"id": "<string>",
"name": "<string>",
"uri": "<string>",
"error": true
},
"confluenceAddValue": {
"key": "<string>",
"name": "<string>",
"error": true
},
"versionTypeValues": [
{
"avatarUrl": "<string>",
"id": 2154,
"name": "<string>",
"key": "<string>",
"url": "<string>"
}
],
"editable": true,
"system": true,
"sortable": true,
"summable": true,
"indexed": true,
"minimumCardinality": 2154,
"maximumCardinality": 2154,
"suffix": "<string>",
"removable": true,
"objectAttributeExists": true,
"hidden": true,
"includeChildObjectTypes": true,
"uniqueAttribute": true,
"regexValidation": "<string>",
"qlQuery": "<string>",
"options": "<string>",
"position": 2154,
"iql": "<string>",
"versionTypeValue": {
"avatarUrl": "<string>",
"id": 2154,
"name": "<string>",
"key": "<string>",
"url": "<string>"
}
}
Rate this page: