Skip to main content

Get submitted submissions by projectId

GET 

/submissions/validated/by/project/:projectId

Get submitted submissions by projectId

Request

Path Parameters

    projectId projectIdrequired

Query Parameters

    name string

    Search for submission by name

    startDate date-time

    Search by start date

    endDate date-time

    Search by end date

    page integer

    Possible values: >= 1

    Default value: 1

    Specify the page number for pagination (default is 1).

    limit integer

    Default value: 10

    Specify the number of projects per page (default is 10, 0 gets all results).

    orderBy string

    Possible values: [createdAt, name, state]

    Field to order the results by (e.g., 'createdAt', 'ownerId'). Default is 'createdAt'.

    sortOrder string

    Possible values: [asc, desc]

    Default value: desc

    'asc' for ascending or 'desc' for descending order. Default is 'desc'.

Responses

Submissions successfully retrieved

Schema

  • Array [

  • postTitle string

    Submission title

    thumbnail string

    Thumbnail image relative to the submission

    ownerId string

    Unique identifier of the owner

    createdAt date-time

    Submission creation time

    id string

    Unique submission identifier

    computation string

    Computation technique

    data string

    Structural data about the submission

    name string

    Submission name

    voteCount integer

    Integer representing amount of votes on submission

    schemaId stringrequired

    Unique identifier for Schema

    commentCount integer

    Integer representing amount of comments on submission

    description string

    Submission description

    creatorDisplayThumbnailData string

    Thumbnail data

    source string

    Submission source

    state string

    Possible values: [draft, pendingValidation]

    State in which the submission is

  • ]

Loading...