View a Project Image
get
/api/restapi/project/image/{projectId}
This endpoint returns project images that meet the following requirements:
- The object belongs to a project with an ID value that matches the value of the {projectId} path parameter.
Request
Path Parameters
-
projectId(required): integer(int64)
The system-generated identifier of a project.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Successful operation
Root Schema : ApiEntityProjectImage
Type:
object
Title:
Show Source
ApiEntityProjectImage
-
image: string
(byte)
The image file uploaded to the project.
Displayed throughout the application in areas like news feeds. -
imageType: string
Allowed Values:
[ "PNG", "JPEG", "GIF" ]
The mime type of an image associated with a project. -
link: string
(url)
The self-link to the object. This field is populated only in the responses generated by the batch create APIs.
-
project: integer
(int64)
The system-generated identifier of a project.
-
projectImageId: integer
(int64)
The system-generated identifier of a project image. This value should not be provided in create operation request data, however, it is required for update requests.
-
updateDate: string
(date-time)
Date when the record was last updated.
204 Response
Successful operation with no content.
404 Response
The requested project does not exist, or you do not have access to it.