postnummer-app/api.md
2023-02-10 08:45:40 +01:00

423 B

Api specification

Review

Review model

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

GET reviews

Response

{
    Review[]
}

Post createReview

Request

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

Response

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