HTTP Request Methods
All Zoho Recruit v2 APIs follow REST standards, i.e, they use the HTTP request methods GET, POST, PUT, DELETE etc,.
The following table explains the HTTP methods and their descriptions.
Method | Description |
---|---|
GET | To retrieve data/resource from the resource server. |
POST | To insert or upload any new resource to the server. |
PUT | To update an existing resource. This replaces the target resource with the updated content. |
PATCH | To update a specific detail of the resource. This method updates the target resource with the provided content without changing other data. |
DELETE | To delete a resource at a particular location. |