Difference between revisions of "My REST API notes"
Jump to navigation
Jump to search
To my computing notes
(initial creation) |
|||
Line 20: | Line 20: | ||
|} | |} | ||
== REST Resources == | |||
[https://restfulapi.net/http-status-codes/ REST HTTP status codes] | |||
<center>[[Computing|To my computing notes]]</center> | <center>[[Computing|To my computing notes]]</center> |
Latest revision as of 10:19, 23 September 2020
API endpoint URL format
https://domain/product/version/resource/{id}
Header text | Header text |
---|---|
base URL | https://domain |
grouping name (optional) | /product |
version of API | /version |
REST resource | /resource |
resource ID | /{id} |
root URL | https://domain/product/version |