postnummer-app/api.md
2023-02-10 11:10:16 +01:00

432 B

Api specification

Review

Review model

{
    id: number,
    location: string,
    title: string,
    content: string,
    stars: number
}

GET reviews

Response

{
    reviews: Review[]
}

Post createReview

Request

{
    location: string,
    title: string,
    content: string,
    stars: number
}

Response

{
    message: "Ok" | "Invalid request"
}