HTTP Requests: Difference between revisions

From Planfix
Jump to: navigation, search
No edit summary
No edit summary
Line 1: Line 1:
{{#seo:
|title=HTTP Requests in Planfix
|titlemode=append
|keywords=планфикс, post-запросы, POST-запросы, сценарии, входящие вебхуки, HTTP-запросы, http, запросы, POST, GET, PUT, DELETE, Отправка POST-запросов при помощи автоматических сценариев
|description=HTTP Requests in Planfix
}}
Planfix allows you to send POST requests using via [[scripts]] and [[Incoming webhooks|webhooks]] and supports the following methods:
Planfix allows you to send POST requests using via [[scripts]] and [[Incoming webhooks|webhooks]] and supports the following methods:
*GET


*POST


POST is one of many request methods supported by HTTP protocol used on the web. The POST request method is intended for requests where a web server is receiving data for storage in the body of a message. It's often used to upload files or submit completed online forms.
*PUT


 
*DELETE
Examples of POST requests that use [[Variables in task templates | variables]]:
 
https://pic.planfix.ru/pf/N1/GdsiKR.png
 
https://pic.planfix.ru/pf/IH/oEC0xh.png
==Important==
==Important==
*POST requests are sent from your account in single-thread mode. A new POST request is not sent until a response has been received for the previous request. Because of this, if there is a significant delay in the remote server's response, there may be a significant delay in sending future requests.
*POST requests are sent from your account in single-thread mode. A new POST request is not sent until a response has been received for the previous request. Because of this, if there is a significant delay in the remote server's response, there may be a significant delay in sending future requests.

Revision as of 13:38, 24 June 2025

Planfix allows you to send POST requests using via scripts and webhooks and supports the following methods:

  • GET
  • POST
  • PUT
  • DELETE

Important

  • POST requests are sent from your account in single-thread mode. A new POST request is not sent until a response has been received for the previous request. Because of this, if there is a significant delay in the remote server's response, there may be a significant delay in sending future requests.
  • If a successful response is not received from the remote server (response status not equal to 200) Planfix will attempt to send the request again several times, after certain time intervals. Five additional attempts are made: after 5 / +15 / +30 / +60 minutes. This is done to prevent message loss in the event that the remote server is temporarily unavailable or inoperable.
  • In addition, no other POST requests will be sent from your account for three minutes after receiving an unsuccessful response or no response from the server. This is a necessary measure taken to ensure that Planfix continues to work stably when a large number of requests are made from an account and the server they are sent to stops responding.


Go To