View a Project Image
get
/primeapi/restapi/project/image/{id}
This endpoint returns proejct images that meet the following requirements:
- The object has an ID that matches the value of the {id} path parameter.
Request
Path Parameters
-
id: integer(int64)
The system-generated identifier of a project.
Response
Supported Media Types
- application/json
200 Response
successful operation
Root Schema : ApiEntityProjectImage
Type:
Show Source
object
-
image:
array image
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(optional):
string(url)
Read Only:
true
-
project(optional):
integer(int64)
The system-generated identifier of a project.
-
projectImageId(optional):
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(optional):
string(date-time)
Read Only:
true
Date when the record was last updated. Used for viewing and filtering records, obtained ONLY from GET calls, modified on and after a particular date. Not a part of POST response.
Nested Schema : image
Type:
array
The image file uploaded to the project.
Displayed throughout the application in areas like news feeds.
Show Source
Displayed throughout the application in areas like news feeds.
204 Response
Successful operation with no content.
404 Response
The requested project does not exist, or you do not have access to it.