Skip to main content
POST
/
v1
/
skills
/
{slug}
/
reviews
Create Review
curl --request POST \
  --url https://api.example.com/v1/skills/{slug}/reviews \
  --header 'Content-Type: application/json' \
  --data '
{
  "rating": 3,
  "text": "<string>"
}
'
{
  "id": "<string>",
  "skill_slug": "<string>",
  "rating": 123,
  "text": "<string>",
  "author_display_name": "<string>",
  "created_at": "<string>"
}

Path Parameters

slug
string
required

Body

application/json
rating
integer
required
Required range: 1 <= x <= 5
text
string | null
Maximum string length: 2000

Response

Successful Response

id
string
required
skill_slug
string
required
rating
integer
required
text
string | null
required
author_display_name
string
required
created_at
string
required