cURL
curl --request PUT \
--url https://api.example.com/sectors/:idimport requests
url = "https://api.example.com/sectors/:id"
response = requests.put(url)
print(response.text)const options = {method: 'PUT'};
fetch('https://api.example.com/sectors/: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.example.com/sectors/:id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/sectors/:id"
req, _ := http.NewRequest("PUT", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.example.com/sectors/:id")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/sectors/:id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
response = http.request(request)
puts response.read_bodySectores
Sectors update
Actualiza los datos de un sector específico.
PUT
/
sectors
/
:id
cURL
curl --request PUT \
--url https://api.example.com/sectors/:idimport requests
url = "https://api.example.com/sectors/:id"
response = requests.put(url)
print(response.text)const options = {method: 'PUT'};
fetch('https://api.example.com/sectors/: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.example.com/sectors/:id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/sectors/:id"
req, _ := http.NewRequest("PUT", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.example.com/sectors/:id")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/sectors/:id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
response = http.request(request)
puts response.read_bodyEndpoint
PUT https://gateway.orkeia.ai/sectors/{id}
AutenticaciónRequiere el encabezado
authorization: <tu_token>.
Parámetros de Ruta
| Nombre | Tipo | Obligatorio | Descripción | Ejemplo |
|---|---|---|---|---|
| id | string | Sí | Identificador único del sector. | SECTOR_12345 |
Cuerpo de la Solicitud (JSON)
El servicio recibe un wrapper con la propiedadsector. (Elenvironmentse maneja en el servidor.)
{
"sector": {
"name": "Sector Actualizado",
"description": "Nueva descripción"
}
}
Ejemplo (cURL)
curl -X PUT "https://gateway.orkeia.ai/sectors/SECTOR_12345" \
-H "authorization: <tu_token>" \
-H "Content-Type: application/json" \
-d '{
"sector": {
"name": "Sector Actualizado",
"description": "Nueva descripción"
}
}'
Respuestas
Response - Éxito
response
{
"status": "OK",
"data": {
"id": "SECTOR_12345",
"name": "Sector Actualizado",
"description": "Nueva descripción"
}
}
500 — Error del Servidor
{
"status": "ERROR",
"code": "server/error",
"data": null
}
400 — Error del Cliente
{
"status": "ERROR",
"code": "client/error",
"data": null
}
¿Esta página le ayudó?
⌘I
