Skip to content

Instantly share code, notes, and snippets.

@f0-x
Created January 9, 2023 03:52
Show Gist options
  • Save f0-x/3b267af7b2cc722c19cc5b52a51963de to your computer and use it in GitHub Desktop.
Save f0-x/3b267af7b2cc722c19cc5b52a51963de to your computer and use it in GitHub Desktop.
POST : updateFilmmakerAwards
POST API Request Schema
{
caseId: string // required: true, detail: Filmmaker/Member's id
hasAwards: [
{
id: string //required: true, detail: Unique id of the award
rank: string // required: true, detail: One of the enum Ranks { "Winner", "Shortlisted", "Nominee", "Other"}
filmTitle: string // required: true, detail: Title of the film/movie
awardTitle: string // required: true, detail: Title of the specific award
year: number // required: true, true: Year the award was provided
compName: string // required: true, detail: Name of the Competition
}
]
}
POST API Response Schema
{
caseId: string //required: true, Filmmaker/Member's Id
title: string //required: false, Description
conceptInstance: string // required: false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment