Update a Scheduled Function
curl --request PATCH \
--url https://api.getnexor.ai/api/public/scheduled-functions/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"description": "<string>",
"code": "<string>",
"cron_expression": "<string>",
"timezone": "<string>",
"is_active": true,
"lookup_config": {
"leads": {
"include": true,
"query": {
"filters": [
{
"value": "<unknown>"
}
],
"order": [
{
"ascending": false
}
],
"limit": 2
},
"filters": {
"search": "<string>",
"workflowId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"statusId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"campaignId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"assignedTo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dateFrom": "2023-11-07T05:31:56Z",
"dateTo": "2023-11-07T05:31:56Z"
},
"limit": 2
},
"agents": {
"include": false
},
"hosts": {
"include": false
}
},
"max_leads_per_cycle": 250
}
'import requests
url = "https://api.getnexor.ai/api/public/scheduled-functions/{id}"
payload = {
"name": "<string>",
"description": "<string>",
"code": "<string>",
"cron_expression": "<string>",
"timezone": "<string>",
"is_active": True,
"lookup_config": {
"leads": {
"include": True,
"query": {
"filters": [{ "value": "<unknown>" }],
"order": [{ "ascending": False }],
"limit": 2
},
"filters": {
"search": "<string>",
"workflowId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"statusId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"campaignId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"assignedTo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dateFrom": "2023-11-07T05:31:56Z",
"dateTo": "2023-11-07T05:31:56Z"
},
"limit": 2
},
"agents": { "include": False },
"hosts": { "include": False }
},
"max_leads_per_cycle": 250
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
description: '<string>',
code: '<string>',
cron_expression: '<string>',
timezone: '<string>',
is_active: true,
lookup_config: {
leads: {
include: true,
query: {filters: [{value: '<unknown>'}], order: [{ascending: false}], limit: 2},
filters: {
search: '<string>',
workflowId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
statusId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
campaignId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
assignedTo: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
dateFrom: '2023-11-07T05:31:56Z',
dateTo: '2023-11-07T05:31:56Z'
},
limit: 2
},
agents: {include: false},
hosts: {include: false}
},
max_leads_per_cycle: 250
})
};
fetch('https://api.getnexor.ai/api/public/scheduled-functions/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getnexor.ai/api/public/scheduled-functions/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'description' => '<string>',
'code' => '<string>',
'cron_expression' => '<string>',
'timezone' => '<string>',
'is_active' => true,
'lookup_config' => [
'leads' => [
'include' => true,
'query' => [
'filters' => [
[
'value' => '<unknown>'
]
],
'order' => [
[
'ascending' => false
]
],
'limit' => 2
],
'filters' => [
'search' => '<string>',
'workflowId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'statusId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'campaignId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'assignedTo' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'dateFrom' => '2023-11-07T05:31:56Z',
'dateTo' => '2023-11-07T05:31:56Z'
],
'limit' => 2
],
'agents' => [
'include' => false
],
'hosts' => [
'include' => false
]
],
'max_leads_per_cycle' => 250
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getnexor.ai/api/public/scheduled-functions/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"code\": \"<string>\",\n \"cron_expression\": \"<string>\",\n \"timezone\": \"<string>\",\n \"is_active\": true,\n \"lookup_config\": {\n \"leads\": {\n \"include\": true,\n \"query\": {\n \"filters\": [\n {\n \"value\": \"<unknown>\"\n }\n ],\n \"order\": [\n {\n \"ascending\": false\n }\n ],\n \"limit\": 2\n },\n \"filters\": {\n \"search\": \"<string>\",\n \"workflowId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"statusId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"campaignId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"assignedTo\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dateFrom\": \"2023-11-07T05:31:56Z\",\n \"dateTo\": \"2023-11-07T05:31:56Z\"\n },\n \"limit\": 2\n },\n \"agents\": {\n \"include\": false\n },\n \"hosts\": {\n \"include\": false\n }\n },\n \"max_leads_per_cycle\": 250\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.getnexor.ai/api/public/scheduled-functions/{id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"code\": \"<string>\",\n \"cron_expression\": \"<string>\",\n \"timezone\": \"<string>\",\n \"is_active\": true,\n \"lookup_config\": {\n \"leads\": {\n \"include\": true,\n \"query\": {\n \"filters\": [\n {\n \"value\": \"<unknown>\"\n }\n ],\n \"order\": [\n {\n \"ascending\": false\n }\n ],\n \"limit\": 2\n },\n \"filters\": {\n \"search\": \"<string>\",\n \"workflowId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"statusId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"campaignId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"assignedTo\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dateFrom\": \"2023-11-07T05:31:56Z\",\n \"dateTo\": \"2023-11-07T05:31:56Z\"\n },\n \"limit\": 2\n },\n \"agents\": {\n \"include\": false\n },\n \"hosts\": {\n \"include\": false\n }\n },\n \"max_leads_per_cycle\": 250\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getnexor.ai/api/public/scheduled-functions/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"code\": \"<string>\",\n \"cron_expression\": \"<string>\",\n \"timezone\": \"<string>\",\n \"is_active\": true,\n \"lookup_config\": {\n \"leads\": {\n \"include\": true,\n \"query\": {\n \"filters\": [\n {\n \"value\": \"<unknown>\"\n }\n ],\n \"order\": [\n {\n \"ascending\": false\n }\n ],\n \"limit\": 2\n },\n \"filters\": {\n \"search\": \"<string>\",\n \"workflowId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"statusId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"campaignId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"assignedTo\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dateFrom\": \"2023-11-07T05:31:56Z\",\n \"dateTo\": \"2023-11-07T05:31:56Z\"\n },\n \"limit\": 2\n },\n \"agents\": {\n \"include\": false\n },\n \"hosts\": {\n \"include\": false\n }\n },\n \"max_leads_per_cycle\": 250\n}"
response = http.request(request)
puts response.read_body{
"function": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"client_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"cron_expression": "<string>",
"timezone": "<string>",
"run_count": 123,
"is_active": true,
"lookup_config": {
"leads": {
"include": true,
"query": {
"filters": [
{
"column": "id",
"op": "eq",
"value": "<unknown>"
}
],
"order": [
{
"column": "id",
"ascending": false
}
],
"limit": 2
},
"filters": {
"search": "<string>",
"workflowId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"statusId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"campaignId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"activeFilter": "active",
"assignedTo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"olderThan": {
"value": 1,
"unit": "hours"
},
"newerThan": {
"value": 1,
"unit": "hours"
},
"dateFrom": "2023-11-07T05:31:56Z",
"dateTo": "2023-11-07T05:31:56Z",
"sortBy": "created_at",
"sortDir": "asc"
},
"limit": 2
},
"agents": {
"include": false
},
"hosts": {
"include": false
}
},
"max_leads_per_cycle": 250,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"next_run_at": "2023-11-07T05:31:56Z",
"last_run_at": "2023-11-07T05:31:56Z",
"last_run_status": "<string>",
"code": "<string>"
},
"deploy_error": "<string>",
"success": "<unknown>"
}{
"error": "<unknown>",
"message": "<unknown>",
"field": "<unknown>",
"unknown_keys": "<unknown>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<unknown>",
"message": "<unknown>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<unknown>",
"message": "<unknown>"
}Actualizar una función programada
Esta operación permite actualizar una función programada en la cuenta autenticada de Nexor. Esta referencia documenta campos verificados de ruta, consulta y cuerpo JSON de nivel superior, códigos de estado observados y campos de respuesta de nivel superior. Las respuestas del proveedor o con estructuras anidadas profundas pueden permanecer abiertas.
PATCH
/
scheduled-functions
/
{id}
Update a Scheduled Function
curl --request PATCH \
--url https://api.getnexor.ai/api/public/scheduled-functions/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"description": "<string>",
"code": "<string>",
"cron_expression": "<string>",
"timezone": "<string>",
"is_active": true,
"lookup_config": {
"leads": {
"include": true,
"query": {
"filters": [
{
"value": "<unknown>"
}
],
"order": [
{
"ascending": false
}
],
"limit": 2
},
"filters": {
"search": "<string>",
"workflowId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"statusId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"campaignId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"assignedTo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dateFrom": "2023-11-07T05:31:56Z",
"dateTo": "2023-11-07T05:31:56Z"
},
"limit": 2
},
"agents": {
"include": false
},
"hosts": {
"include": false
}
},
"max_leads_per_cycle": 250
}
'import requests
url = "https://api.getnexor.ai/api/public/scheduled-functions/{id}"
payload = {
"name": "<string>",
"description": "<string>",
"code": "<string>",
"cron_expression": "<string>",
"timezone": "<string>",
"is_active": True,
"lookup_config": {
"leads": {
"include": True,
"query": {
"filters": [{ "value": "<unknown>" }],
"order": [{ "ascending": False }],
"limit": 2
},
"filters": {
"search": "<string>",
"workflowId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"statusId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"campaignId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"assignedTo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dateFrom": "2023-11-07T05:31:56Z",
"dateTo": "2023-11-07T05:31:56Z"
},
"limit": 2
},
"agents": { "include": False },
"hosts": { "include": False }
},
"max_leads_per_cycle": 250
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
description: '<string>',
code: '<string>',
cron_expression: '<string>',
timezone: '<string>',
is_active: true,
lookup_config: {
leads: {
include: true,
query: {filters: [{value: '<unknown>'}], order: [{ascending: false}], limit: 2},
filters: {
search: '<string>',
workflowId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
statusId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
campaignId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
assignedTo: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
dateFrom: '2023-11-07T05:31:56Z',
dateTo: '2023-11-07T05:31:56Z'
},
limit: 2
},
agents: {include: false},
hosts: {include: false}
},
max_leads_per_cycle: 250
})
};
fetch('https://api.getnexor.ai/api/public/scheduled-functions/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getnexor.ai/api/public/scheduled-functions/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'description' => '<string>',
'code' => '<string>',
'cron_expression' => '<string>',
'timezone' => '<string>',
'is_active' => true,
'lookup_config' => [
'leads' => [
'include' => true,
'query' => [
'filters' => [
[
'value' => '<unknown>'
]
],
'order' => [
[
'ascending' => false
]
],
'limit' => 2
],
'filters' => [
'search' => '<string>',
'workflowId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'statusId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'campaignId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'assignedTo' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'dateFrom' => '2023-11-07T05:31:56Z',
'dateTo' => '2023-11-07T05:31:56Z'
],
'limit' => 2
],
'agents' => [
'include' => false
],
'hosts' => [
'include' => false
]
],
'max_leads_per_cycle' => 250
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getnexor.ai/api/public/scheduled-functions/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"code\": \"<string>\",\n \"cron_expression\": \"<string>\",\n \"timezone\": \"<string>\",\n \"is_active\": true,\n \"lookup_config\": {\n \"leads\": {\n \"include\": true,\n \"query\": {\n \"filters\": [\n {\n \"value\": \"<unknown>\"\n }\n ],\n \"order\": [\n {\n \"ascending\": false\n }\n ],\n \"limit\": 2\n },\n \"filters\": {\n \"search\": \"<string>\",\n \"workflowId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"statusId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"campaignId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"assignedTo\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dateFrom\": \"2023-11-07T05:31:56Z\",\n \"dateTo\": \"2023-11-07T05:31:56Z\"\n },\n \"limit\": 2\n },\n \"agents\": {\n \"include\": false\n },\n \"hosts\": {\n \"include\": false\n }\n },\n \"max_leads_per_cycle\": 250\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.getnexor.ai/api/public/scheduled-functions/{id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"code\": \"<string>\",\n \"cron_expression\": \"<string>\",\n \"timezone\": \"<string>\",\n \"is_active\": true,\n \"lookup_config\": {\n \"leads\": {\n \"include\": true,\n \"query\": {\n \"filters\": [\n {\n \"value\": \"<unknown>\"\n }\n ],\n \"order\": [\n {\n \"ascending\": false\n }\n ],\n \"limit\": 2\n },\n \"filters\": {\n \"search\": \"<string>\",\n \"workflowId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"statusId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"campaignId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"assignedTo\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dateFrom\": \"2023-11-07T05:31:56Z\",\n \"dateTo\": \"2023-11-07T05:31:56Z\"\n },\n \"limit\": 2\n },\n \"agents\": {\n \"include\": false\n },\n \"hosts\": {\n \"include\": false\n }\n },\n \"max_leads_per_cycle\": 250\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getnexor.ai/api/public/scheduled-functions/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"code\": \"<string>\",\n \"cron_expression\": \"<string>\",\n \"timezone\": \"<string>\",\n \"is_active\": true,\n \"lookup_config\": {\n \"leads\": {\n \"include\": true,\n \"query\": {\n \"filters\": [\n {\n \"value\": \"<unknown>\"\n }\n ],\n \"order\": [\n {\n \"ascending\": false\n }\n ],\n \"limit\": 2\n },\n \"filters\": {\n \"search\": \"<string>\",\n \"workflowId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"statusId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"campaignId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"assignedTo\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dateFrom\": \"2023-11-07T05:31:56Z\",\n \"dateTo\": \"2023-11-07T05:31:56Z\"\n },\n \"limit\": 2\n },\n \"agents\": {\n \"include\": false\n },\n \"hosts\": {\n \"include\": false\n }\n },\n \"max_leads_per_cycle\": 250\n}"
response = http.request(request)
puts response.read_body{
"function": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"client_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"cron_expression": "<string>",
"timezone": "<string>",
"run_count": 123,
"is_active": true,
"lookup_config": {
"leads": {
"include": true,
"query": {
"filters": [
{
"column": "id",
"op": "eq",
"value": "<unknown>"
}
],
"order": [
{
"column": "id",
"ascending": false
}
],
"limit": 2
},
"filters": {
"search": "<string>",
"workflowId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"statusId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"campaignId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"activeFilter": "active",
"assignedTo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"olderThan": {
"value": 1,
"unit": "hours"
},
"newerThan": {
"value": 1,
"unit": "hours"
},
"dateFrom": "2023-11-07T05:31:56Z",
"dateTo": "2023-11-07T05:31:56Z",
"sortBy": "created_at",
"sortDir": "asc"
},
"limit": 2
},
"agents": {
"include": false
},
"hosts": {
"include": false
}
},
"max_leads_per_cycle": 250,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"next_run_at": "2023-11-07T05:31:56Z",
"last_run_at": "2023-11-07T05:31:56Z",
"last_run_status": "<string>",
"code": "<string>"
},
"deploy_error": "<string>",
"success": "<unknown>"
}{
"error": "<unknown>",
"message": "<unknown>",
"field": "<unknown>",
"unknown_keys": "<unknown>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<unknown>",
"message": "<unknown>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<unknown>",
"message": "<unknown>"
}Notas de seguridad y comportamiento
- HTTP 200 puede incluir deploy_error.
- Los cambios de código o la reactivación despliegan, mientras los cambios de cron o zona horaria recalculan next_run_at. Un cuerpo vacío todavía actualiza updated_at.
- La mayoría de los tipos de propiedades no se validan estrictamente e is_active se convierte según su valor de verdad.
- Un cuerpo con solo campos desconocidos, o un cuerpo vacío, devuelve HTTP 200 en lugar de HTTP 400.
Autorizaciones
API key for authentication. Keys are prefixed with nxr_live_.
Parámetros de ruta
Scheduled Function id.
Cuerpo
application/json
Última modificación el 8 de septiembre de 2026
⌘I