Get submission data
GET/submission/:submissionId
Get submission data
Request
Path Parameters
submissionId submissionIdrequired
The submissionId to get the data of
Responses
- 200
- 403
- 404
- 500
- default
Submission successfully retrieved
- application/json
- Schema
- Example (from schema)
Schema
postTitle string
Submission title
schemaId stringrequired
Unique identifier for Schema
state string
Possible values: [draft
, pendingValidation
]
State in which the submission is
ownerId string
Unique identifier of the owner
source string
Submission source
voteCount integer
Integer representing amount of votes on submission
createdAt date-time
Submission creation time
data string
Structural data about the submission
description string
Submission description
name submissionName (string)
Possible values: <= 32 characters
Name of the submission
computation string
Computation technique
thumbnail string
Thumbnail image relative to the submission
creatorDisplayThumbnailData string
Thumbnail data
commentCount integer
Integer representing amount of comments on submission
id string
Unique submission identifier
{
"postTitle": " Code face paint for the latest release",
"schemaId": "s2S7KuFGc",
"state": "draft",
"ownerId": "ab1a4ade-6eb9-40cd-bb3e-f274af238649",
"source": "",
"voteCount": 0,
"createdAt": "2024-09-11T10:30:56.168Z",
"data": "{\"schema\":\"facepaint\",\"children\":{\"albedo\":{\"schema\":\"albedo\",\"image\":\"https://file.playmakers.co/S1gf0qsVq/data/facepaint.png\"}}}",
"description": "This is a new submission for a facepaint",
"name": "Screaming Facepaint",
"computation": "default",
"thumbnail": "https://file.playmakers.co/S1gf0qsVq/thumbnail.png",
"creatorDisplayThumbnailData": "",
"commentCount": 0,
"id": "S1gf0qsVq"
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Forbidden access"
}
NotFound
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "A mandatory item was not found"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Internal Server Error"
}
Unexpected error
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "An unexpected error occured"
}
Loading...