Contactos
Actualizar contacto
Actualiza uno o más campos de un contacto existente.
PATCH
/
contacts
/
{contactId}
Actualizar contacto
curl --request PATCH \
--url https://api.insuranceboosters.com/api/v1/contacts/{contactId} \
--header 'Content-Type: application/json' \
--header 'x-ib-api-key: <api-key>' \
--data '
{
"email": "nuevo.correo@example.com",
"phoneNumbers": [
"+525500000001"
]
}
'import requests
url = "https://api.insuranceboosters.com/api/v1/contacts/{contactId}"
payload = {
"email": "nuevo.correo@example.com",
"phoneNumbers": ["+525500000001"]
}
headers = {
"x-ib-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-ib-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({email: 'nuevo.correo@example.com', phoneNumbers: ['+525500000001']})
};
fetch('https://api.insuranceboosters.com/api/v1/contacts/{contactId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'PATCH',
headers: {'x-ib-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({email: 'nuevo.correo@example.com', phoneNumbers: ['+525500000001']})
};
fetch('https://api.insuranceboosters.com/api/v1/contacts/{contactId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://api.insuranceboosters.com/api/v1/contacts/{contactId}';
const options = {
method: 'PATCH',
headers: {'x-ib-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({email: 'nuevo.correo@example.com', phoneNumbers: ['+525500000001']})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.patch("https://api.insuranceboosters.com/api/v1/contacts/{contactId}")
.header("x-ib-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}")
.asString();using RestSharp;
var options = new RestClientOptions("https://api.insuranceboosters.com/api/v1/contacts/{contactId}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("x-ib-api-key", "<api-key>");
request.AddJsonBody("{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}", false);
var response = await client.PatchAsync(request);
Console.WriteLine("{0}", response.Content);
using RestSharp;
var options = new RestClientOptions("https://api.insuranceboosters.com/api/v1/contacts/{contactId}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("x-ib-api-key", "<api-key>");
request.AddJsonBody("{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}", false);
var response = await client.PatchAsync(request);
Console.WriteLine("{0}", response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.insuranceboosters.com/api/v1/contacts/{contactId}"
payload := strings.NewReader("{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("x-ib-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))
}require 'uri'
require 'net/http'
url = URI("https://api.insuranceboosters.com/api/v1/contacts/{contactId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["x-ib-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}"
response = http.request(request)
puts response.read_body<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.insuranceboosters.com/api/v1/contacts/{contactId}",
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([
'email' => 'nuevo.correo@example.com',
'phoneNumbers' => [
'+525500000001'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-ib-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}")
val request = Request.Builder()
.url("https://api.insuranceboosters.com/api/v1/contacts/{contactId}")
.patch(body)
.addHeader("x-ib-api-key", "<api-key>")
.addHeader("Content-Type", "application/json")
.build()
val response = client.newCall(request).execute()falseimport Foundation
let parameters = [
"email": "nuevo.correo@example.com",
"phoneNumbers": ["+525500000001"]
] as [String : Any?]
let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])
let url = URL(string: "https://api.insuranceboosters.com/api/v1/contacts/{contactId}")!
var request = URLRequest(url: url)
request.httpMethod = "PATCH"
request.timeoutInterval = 10
request.allHTTPHeaderFields = [
"x-ib-api-key": "<api-key>",
"Content-Type": "application/json"
]
request.httpBody = postData
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))$headers=@{}
$headers.Add("x-ib-api-key", "<api-key>")
$headers.Add("Content-Type", "application/json")
$response = Invoke-WebRequest -Uri 'https://api.insuranceboosters.com/api/v1/contacts/{contactId}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{
"email": "nuevo.correo@example.com",
"phoneNumbers": [
"+525500000001"
]
}'{
"success": true,
"id": "<contact-id>",
"message": "Contact updated successfully"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Actualiza únicamente los campos incluidos en el body. Los demás valores permanecen sin cambios.
Respuesta exitosa (
Endpoint
PATCH /contacts/{contactId}
Parámetros de ruta
| Parámetro | Tipo | Requerido | Descripción |
|---|---|---|---|
contactId | string | Sí | ID del contacto. |
Body
Envía al menos uno de los campos editables configurados para tu cuenta. Cada valor debe respetar el tipo y las reglas del campo.Ejemplo de solicitud
curl -X PATCH "https://api.insuranceboosters.com/api/v1/contacts/{contactId}" \
-H "Content-Type: application/json" \
-H "x-ib-api-key: TU_API_KEY" \
-d '{
"email": "nuevo.correo@example.com",
"phoneNumbers": ["+525500000001"]
}'
Respuesta exitosa (200)
{
"success": true,
"id": "<contact-id>",
"message": "Contact updated successfully"
}
Errores frecuentes
| HTTP | Qué significa | Qué hacer |
|---|---|---|
400 | Un campo no es editable o su valor no cumple el esquema. | Revisa el nombre, tipo y formato del campo. |
401 | API key inválida o faltante. | Verifica x-ib-api-key. |
403 | El contacto no pertenece a tu cuenta. | Confirma que usas el ID y la API key correctos. |
404 | El contacto no existe o fue eliminado. | Confirma contactId. |
500 | No fue posible actualizar el contacto. | Reintenta; si continúa, contacta soporte. |
Authorizations
Path Parameters
ID del contacto.
Body
application/json
Campos editables configurados para tu cuenta.
Was this page helpful?
Actualizar contacto
curl --request PATCH \
--url https://api.insuranceboosters.com/api/v1/contacts/{contactId} \
--header 'Content-Type: application/json' \
--header 'x-ib-api-key: <api-key>' \
--data '
{
"email": "nuevo.correo@example.com",
"phoneNumbers": [
"+525500000001"
]
}
'import requests
url = "https://api.insuranceboosters.com/api/v1/contacts/{contactId}"
payload = {
"email": "nuevo.correo@example.com",
"phoneNumbers": ["+525500000001"]
}
headers = {
"x-ib-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-ib-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({email: 'nuevo.correo@example.com', phoneNumbers: ['+525500000001']})
};
fetch('https://api.insuranceboosters.com/api/v1/contacts/{contactId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'PATCH',
headers: {'x-ib-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({email: 'nuevo.correo@example.com', phoneNumbers: ['+525500000001']})
};
fetch('https://api.insuranceboosters.com/api/v1/contacts/{contactId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://api.insuranceboosters.com/api/v1/contacts/{contactId}';
const options = {
method: 'PATCH',
headers: {'x-ib-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({email: 'nuevo.correo@example.com', phoneNumbers: ['+525500000001']})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.patch("https://api.insuranceboosters.com/api/v1/contacts/{contactId}")
.header("x-ib-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}")
.asString();using RestSharp;
var options = new RestClientOptions("https://api.insuranceboosters.com/api/v1/contacts/{contactId}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("x-ib-api-key", "<api-key>");
request.AddJsonBody("{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}", false);
var response = await client.PatchAsync(request);
Console.WriteLine("{0}", response.Content);
using RestSharp;
var options = new RestClientOptions("https://api.insuranceboosters.com/api/v1/contacts/{contactId}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("x-ib-api-key", "<api-key>");
request.AddJsonBody("{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}", false);
var response = await client.PatchAsync(request);
Console.WriteLine("{0}", response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.insuranceboosters.com/api/v1/contacts/{contactId}"
payload := strings.NewReader("{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("x-ib-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))
}require 'uri'
require 'net/http'
url = URI("https://api.insuranceboosters.com/api/v1/contacts/{contactId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["x-ib-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}"
response = http.request(request)
puts response.read_body<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.insuranceboosters.com/api/v1/contacts/{contactId}",
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([
'email' => 'nuevo.correo@example.com',
'phoneNumbers' => [
'+525500000001'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-ib-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"email\": \"nuevo.correo@example.com\",\n \"phoneNumbers\": [\n \"+525500000001\"\n ]\n}")
val request = Request.Builder()
.url("https://api.insuranceboosters.com/api/v1/contacts/{contactId}")
.patch(body)
.addHeader("x-ib-api-key", "<api-key>")
.addHeader("Content-Type", "application/json")
.build()
val response = client.newCall(request).execute()falseimport Foundation
let parameters = [
"email": "nuevo.correo@example.com",
"phoneNumbers": ["+525500000001"]
] as [String : Any?]
let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])
let url = URL(string: "https://api.insuranceboosters.com/api/v1/contacts/{contactId}")!
var request = URLRequest(url: url)
request.httpMethod = "PATCH"
request.timeoutInterval = 10
request.allHTTPHeaderFields = [
"x-ib-api-key": "<api-key>",
"Content-Type": "application/json"
]
request.httpBody = postData
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))$headers=@{}
$headers.Add("x-ib-api-key", "<api-key>")
$headers.Add("Content-Type", "application/json")
$response = Invoke-WebRequest -Uri 'https://api.insuranceboosters.com/api/v1/contacts/{contactId}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{
"email": "nuevo.correo@example.com",
"phoneNumbers": [
"+525500000001"
]
}'{
"success": true,
"id": "<contact-id>",
"message": "Contact updated successfully"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}
