Skip to content

Commit b941e9b

Browse files
committed
add to menu and fix some urls etc
1 parent adea57c commit b941e9b

File tree

4 files changed

+56
-6
lines changed

4 files changed

+56
-6
lines changed

pages/services/remove-cj.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
### Remove Contractor from Service
22

33
To remove a Contractor from a Service simply pass the Contractor's ID in the field `contractor`.
4+
It is not possible to remove a Contractor from a Service if they are currently assigned to any Appointments.

pages/services/remove-rcr.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
### Remove Recipient from Service
22

33
To remove a Recipient from a Service simply pass the Recipient's ID in the field `recipient`.
4+
It is not possible to remove a Recipient from a Service if they are currently assigned to any Appointments.

pages/services/services.yml

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,42 @@ sections:
4848
code_url: /api/services/<id>/add_label/
4949
response: /services/label-add-to-a-service.json
5050
-
51-
title: Add a Label to a Recipient
52-
id: label-add-to-a-recipient
53-
description: /recipients/label-add-to-a-recipient.md
54-
code: /recipients/label-add-to-a-recipient.py
51+
title: Removing a Label from a Service
52+
id: label-remove-from-a-service
53+
description: /services/label-remove-from-a-service.md
54+
code: /services/label-remove-from-a-service.py
5555
code_type: POST
56-
code_url: /api/recipients/<id>/add_label/
57-
response: /recipients/label-add-to-a-recipient.json
56+
code_url: /api/services/<id>/remove_label/
57+
response: /services/label-remove-from-a-service.json
58+
-
59+
title: Add a Contractor to a Service
60+
id: create-update-cj
61+
description: /services/create-update-cj.md
62+
code: /services/create-update-cj.py
63+
code_type: POST
64+
code_url: /api/services/<id>/add/
65+
response: /services/create-update-cj.json
66+
-
67+
title: Remove a Contractor from a Service
68+
id: remove-cj
69+
description: /services/remove-cj.md
70+
code: /services/remove-cj.py
71+
code_type: POST
72+
code_url: /api/services/<id>/remove/
73+
response: /services/remove-cj.json
74+
-
75+
title: Add a Recipient to a Service
76+
id: create-update-rcr
77+
description: /services/create-update-rcr.md
78+
code: /services/create-update-rcr.py
79+
code_type: POST
80+
code_url: /api/services/<id>/add/
81+
response: /services/create-update-rcr.json
82+
-
83+
title: Remove a Recipient from a Service
84+
id: remove-rcr
85+
description: /services/remove-rcr.md
86+
code: /services/remove-rcr.py
87+
code_type: POST
88+
code_url: /api/services/<id>/remove/
89+
response: /services/remove-rcr.json

pages/tenders/tenders.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,19 @@ sections:
1515
code_type: GET
1616
code_url: /api/tenders/
1717
response: /tenders/list-all-tenders.json
18+
-
19+
title: Accept a Tender
20+
id: accept-a-tender
21+
description: /tenders/accept-a-tender.md
22+
code: /tenders/accept-a-tender.py
23+
code_type: POST
24+
code_url: /api/tenders/<id>/accept/
25+
response: /tenders/accept-a-tender.json
26+
-
27+
title: Reject a Tender
28+
id: reject-a-tender
29+
description: /tenders/reject-a-tender.md
30+
code: /tenders/reject-a-tender.py
31+
code_type: POST
32+
code_url: /api/tenders/<id>/reject/
33+
response: /tenders/reject-a-tender.json

0 commit comments

Comments
 (0)