Before getting started
Technical Requirements
One Record API encompasses a series of operations accessible through a standardized web protocol. These operations are callable by applications to request or send information. Applications transmit specific request data, and the API promptly responds with data in a predefined standard format.
About One Record API
One Record API follows the principles of REST (Representational State Transfer), using HTTP methods such as POST, GET, PUT, PATCH, and DELETE to facilitate CRUD (Create, Read, Update, Delete) operations. This design enables a standardized approach to interact with web services. Each HTTP method corresponds to a specific action:
POST
for creating new resources,GET
for retrieving existing resources,PUT
for updating entire or partial resources,DELETE
for removing resources.
By following these RESTful principles, One Record API ensures that interactions with the system are consistent and predictable.
Authentication requirements
Last updated