Skip to content

Tag: restful api

Programming

REST API Architecture 101

The API architecture is made up of four different layers: the Interaction Layer, Integrational Layer, Application Layer, and Information Management Layer (databases).

July 11, 2022
Programming

7 Common API Development Terms

When building and maintaining APIs there are a lot of different terminology that you need to be aware of. This isn't a complete list, but it's enough to make you dangerous.

July 5, 2022
Salesforce Logo
Programming

Creating a Custom Salesforce REST API Endpoint

Apex classes and methods can be exposed to external applications as REST based endpoints. This means that there's a very easy way to have an external application make a direct call into Salesforce to do a specific action.

July 2, 2022
Programming

Do REST API Standards Exist?

With REST there's no standard, but there are some standards associated with REST such as oAuth and OpenAPI.

June 30, 2022
Programming

How to Optimize an API

Optimization can mean a lot of things like simplifying a process, reducing data and even speeding up response time. An API often has three different ways we can optimize it.

June 29, 2022
Programming

Should you send payload in an HTTP GET request?

HTTP defines a set of different request methods. There are request methods like GET, POST, PUT, DELETE, and others. Because it's allowed doesn't mean it's right though.

June 24, 2022
Programming

Sorting in a REST API

Sorting is determining the order of items when a list of items is returned from a particular endpoint. The best practice is to really keep things simple and consistent.

May 30, 2022
Programming

Date and DateTime Handling in APIs

Application Programming Interfaces and dates are just as difficult. Timezone issues crop up because dates and datetimes are just strings in JSON, there's nothing to necessarily say that this is a date in this format.

May 29, 2022
Programming

Designing APIs by Contract

Designing by software is a contract - like a legal or business contract. When we design software by contract it means we are designing against a specific specification for each software component.

May 22, 2022
Programming

Is the REST API dead?

The REST API will be alive for many years to come because many companies set up integrations and forget about them until there's a problem. It is still one of the dominant types of application integrations: REST API, SOAP, and more recently GraphQL.

May 20, 2022
Programming

What is HATEOAS?

HATEOAS stands for Hypertext As The Engine of Application State. The theory is that by embedding enough information in our API responses it will be easier to use the API without needing to consult documentation.

May 19, 2022
Programming

5 Common REST API Challenges

When designing a REST API we need to really think of the different challenges that can occur. While many of these challenges are related to ignoring the REST API Constraints, there are definitely other issues that will pop up as you work.

May 16, 2022
Cloud
Programming

5 Tips for Designing RESTful API URI

Each resource in the REST architecture is identified by it's Uniform Resource Identifier (URI) These tips are based on providing a uniform interface REST constraint.

May 13, 2022
Programming

What is JSON?

JSON is a great format for exchanging data, it's used in almost all REST Apis for receiving and sending data.

May 12, 2022
Programming

RESTful API Design Cheat Sheet

A cheat sheet covering RESTful concepts for design and development. The cheatsheet is one page and covers versioning, designing consistent URIs, HTTP methods, HTTP status codes, error handling and authentication/authorization.

May 11, 2022
Programming

REST API – Resources

REST APIs function primarily through the use of resources that are located at a certain URI.

May 10, 2022
Programming

Versioning in REST APIs

Versioning is one of the most critical parts of API design. Versioning allows us to potentially make breaking changes at some point in the future.

May 9, 2022