Skip to content

Commit

Permalink
Add places permissions documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahkiasen committed Feb 6, 2025
1 parent 1d4a430 commit f75f7f6
Showing 1 changed file with 57 additions and 1 deletion.
58 changes: 57 additions & 1 deletion projects/uitdatabank/reference/entry.json
Original file line number Diff line number Diff line change
Expand Up @@ -6077,6 +6077,62 @@
]
}
},
"/places/{placeId}/permissions": {
"parameters": [
{
"$ref": "#/components/parameters/placeId"
}
],
"get": {
"summary": "places - permissions",
"tags": [
"Places"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"permissions": {
"type": "array",
"items": {
"$ref": "../models/permission.json"
}
}
},
"required": [
"permissions"
]
}
}
}
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"$ref": "#/components/responses/Forbidden"
},
"404": {
"$ref": "#/components/responses/NotFound"
}
},
"operationId": "get-places-placeId-permissions",
"x-internal": true,
"security": [
{
"USER_ACCESS_TOKEN": []
},
{
"CLIENT_ACCESS_TOKEN": []
}
],
"description": "Get user permissions relating to a place."
}
},
"/places/{placeId}/price-info": {
"parameters": [
{
Expand Down Expand Up @@ -9649,4 +9705,4 @@
"name": "Users"
}
]
}
}

0 comments on commit f75f7f6

Please sign in to comment.