# /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: schema: $ref: "../components/schemas/error_response.yml" 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