Building a back-end API layer introduces a whole new layer of coordination between server and client code. While there are many aspects to this delicate dance of communication, one key ingredient to minimizing back-and-forth-confusion-about what-call-does-what, is consistently communicating about your API endpoints.
This is by no means rocket science, but over time I’ve created a template that I now tend to use and have been asked to share. Conveniently when the time comes to publish an API externally, this serves as an invaluable tool for creating public documentation. You can see the markdown template alongside an example in this gist.
Title |
The name of your API call Example : Show All Users
|
---|---|
URL |
The URL structure (path only, no root url) /users or /users/:id or /users?id=:id
|
Method |
The request type GET | POST | DELETE | PUT
|
URL Params |
If URL params exist, specify them in accordance with name mentioned in URL section. Separate into optional and required. Required: id=[integer] example: id=12 Optional photo_id=[alphanumeric] example: photo_id=2345kj3 |
Data Params |
If making a post request, what should the body payload look like?
This is a good time to document your various data constraints too. Example: { u : { email : [string], name : [string], current_password : [alphanumeric] password : [alphanumeric], password_confirmation : [alphanumeric] } }Example: { u : { email : "john@smith.com", name : "John", current_password : "apassw0rd" password : "anewpassw0rd", password_confirmation : "anewpassw0rd" } } |
Success Response |
What should the status code be on success and is there any returned data? This is useful when people need to to know what their callbacks should expect! Example: Code: 200 Content: { id : 12 } |
Error Response |
Most endpoints will have many ways they can fail. From unauthorized access, to wrongful parameters etc. All of those should be listed here. It might seem repetitive, but it helps prevent assumptions from being made where they shouldn’t be. Example: Code: 401 UNAUTHORIZED Content: { error : "Log in" } OR Code: 422 Unprocessable Entry Content: { error : "Email invalid" } |
Sample Call |
Just a sample call to your endpoint in a runnable format ($.ajax call or a curl request) – this makes life easier and more predictable. $.ajax({ url: "/users", dataType: "json", data : { u: { id : 12, email : "john@smith.com" } }, type : "PUT", success : function(r) { console.log(r); } }); |
Notes |
This is where all uncertainties, commentary, discussion etc. can go. I recommend timestamping and identifying oneself when leaving comments here. |
Are there other aspects of your API endpoints that you tend to communicate? What additional information should be shared?