We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da70c4b commit a279bfbCopy full SHA for a279bfb
content/reference/endpoints/bookings_tags.md
@@ -43,3 +43,23 @@ GET /bookings_tags/:bookings_tag_id
43
~~~
44
45
<%= render 'json_response', endpoint: "bookings_tags", scopes: %w(bookings_read) %>
46
+
47
+## Add a single bookings tag
48
49
+Adds a tag to an existing booking.
50
51
+~~~
52
+POST /bookings/:id/add_tag/:bookings_tag_id
53
54
55
+Returns empty body with status: 201
56
57
+## Remove a single bookings tag
58
59
+Removes a tag from an existing booking.
60
61
62
+DELETE /bookings/:id/remove_tag/:bookings_tag_id
63
64
65
+Returns empty body with status: 204
0 commit comments