kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
3 years ago
|
# /api/v3/custom_objects/{id}
|
||
|
---
|
||
|
get:
|
||
|
parameters:
|
||
|
- description: The custom object's identifier
|
||
|
example: '1'
|
||
|
in: path
|
||
|
name: id
|
||
|
required: true
|
||
|
schema:
|
||
|
type: integer
|
||
|
responses:
|
||
|
'200':
|
||
|
content:
|
||
|
application/hal+json:
|
||
|
examples:
|
||
|
response:
|
||
|
value:
|
||
|
_links:
|
||
|
self:
|
||
|
href: "/api/v3/custom_objects/1"
|
||
|
_type: CustomObject
|
||
|
value: Foo
|
||
|
schema:
|
||
|
"$ref": "../components/schemas/custom_object_model.yml"
|
||
|
description: OK
|
||
|
headers: {}
|
||
|
'404':
|
||
|
content:
|
||
|
application/hal+json:
|
||
|
examples:
|
||
|
response:
|
||
|
value:
|
||
|
_type: Error
|
||
|
errorIdentifier: urn:openproject-org:api:v3:errors:NotFound
|
||
|
message: The requested resource could not be found.
|
||
|
description: |-
|
||
|
Returned if the custom object does not exist or the client does not have sufficient permissions to see it.
|
||
|
|
||
|
**Required permission:** view work package in any project the custom object's custom field is active in.
|
||
|
headers: {}
|
||
|
tags:
|
||
|
- Custom Objects
|
||
|
description: ''
|
||
|
operationId: View_Custom_Object
|
||
|
summary: View Custom Object
|