You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MDX struggled to parse the deeply (and inconsisently) indented code blocks, so this change replaces them for fenced code blocks which explictly mark them as JSON to allow syntax highlighting
Copy file name to clipboardExpand all lines: docs/api-specifications/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
---
2
+
sidebar_position: 0
3
+
---
1
4
# Introduction
2
5
3
6
As we continue to build on the number of APIs currently in service we provide a central repository for all of the specificactions that have been agreed. The Swagger documentation provides a concise view of the various endpoints of our APIs and how to use them. Our API specifications document our journey to establishing how the APIs were designed and the many decisions that were taken. This will give us the opportunity to learn from our past choices and continue to build and improve as we go.
- GET /contact-details/{id} //will we ever have a use case to retrieve a single contact details record?
53
-
- GET /contact-details?targetId={id}&includeHistoric=true //id of person/organization to retrieve all contact details, with optional filtering of whether historic details should be included. Default should be false.
52
+
- GET /contact-details/[id] //will we ever have a use case to retrieve a single contact details record?
53
+
- GET /contact-details?targetId=[id]&includeHistoric=true //id of person/organization to retrieve all contact details, with optional filtering of whether historic details should be included. Default should be false.
54
54
- POST /contact-details
55
55
- Inserts a new contact details record
56
-
- PUT /contact-details/{id}
56
+
- PUT /contact-details/[id]
57
57
- Updates a contact details record.
58
58
- In previous use cases, value of record was not updated - e.g. if a new phone number is created, a new record was added and old record was marked as inactive if applicable
0 commit comments