1. Contacten
Flireo AI
  • Assistenten
    • Alle assistenten ophalen
      GET
    • Nieuwe assistent aanmaken
      POST
    • Assistent ophalen
      GET
    • Assistent volledig bijwerken
      PUT
    • Assistent gedeeltelijk bijwerken
      PATCH
    • Assistent verwijderen
      DELETE
    • Gekoppeld telefoonnummer ophalen
      GET
    • Telefoonnummer koppelen aan assistent
      POST
    • Telefoonnummer ontkoppelen van assistent
      DELETE
  • Gesprekken
    • Gesprekken ophalen
      GET
    • Gesprek details ophalen
      GET
    • Gesprek verwijderen
      DELETE
    • Direct uitgaand gesprek starten
      POST
  • Contacten
    • Contacten ophalen
      GET
    • Nieuw contact aanmaken
      POST
    • Contact ophalen
      GET
    • Contact volledig bijwerken
      PUT
    • Contact gedeeltelijk bijwerken
      PATCH
    • Contact verwijderen
      DELETE
  • Telefoonnummers
    • Telefoonnummers ophalen
      GET
    • Telefoonnummer bestellen
      POST
    • Telefoonnummer ophalen
      GET
    • Telefoonnummer verwijderen
      DELETE
    • Beschikbare nummers ophalen (national/mobile)
      GET
    • Beschikbare nummers ophalen (legacy)
      GET
    • Nummerbestellingen ophalen
      GET
    • Bestelling ophalen
      GET
  • Geplande Gesprekken
    • Geplande gesprekken ophalen
    • Gesprek inplannen
    • Gepland gesprek ophalen
    • Gepland gesprek bijwerken
    • Gepland gesprek annuleren
  • Verificatie
    • Verificatiegroepen ophalen
    • Nieuwe verificatiegroep aanmaken
    • Verificatiegroep ophalen
    • Verificatiegroep verwijderen
    • Documenten van verificatiegroep ophalen
    • Document uploaden voor verificatie
    • Verificatie document verwijderen
    • Beschikbare nummers voor verificatiegroep
    • Nummer bestellen via verificatiegroep
    • Verificatiegroep indienen ter goedkeuring
  • Gebruiker
    • Gebruikersprofiel ophalen
    • Gebruikersprofiel ophalen (uitgebreid)
    • Gebruikersprofiel ophalen (legacy)
  • Geavanceerd
    • Bericht injecteren in actief gesprek
    • Kennisbank bevragen
  • Instant Agents
    • Instant agent aanmaken
    • Veelgestelde vragen genereren
  • Webhooks
    • assistant-request
    • status-update
    • tool-calls
    • end-of-call-report
  • Schemas
    • PaginationMeta
    • ErrorResponse
    • SuccessMessage
    • Assistant
    • AssistantCreateInput
    • AssistantUpdateInput
    • AssistantPhoneNumberLink
    • Call
    • DirectCallInput
    • Contact
    • ContactDetail
    • ContactCreateInput
    • ContactUpdateInput
    • PhoneNumber
    • AvailablePhoneNumber
    • PhoneNumberOrder
    • PhoneNumberOrderInput
    • PhoneNumberOrderResponse
    • ScheduledCall
    • ScheduledCallCreateInput
    • ScheduledCallUpdateInput
    • VerificationGroup
    • VerificationGroupCreateInput
    • VerificationDocument
    • OrderNumberInput
    • UserProfile
    • CreditsBalance
    • InstantAgentCreateInput
    • InstantAgentResponse
    • GenerateFaqsInput
    • GenerateFaqsResponse
    • InjectMessageInput
    • InjectMessageResponse
    • QueryKnowledgebaseInput
    • WebhookTaskItem
    • WebhookAnalysisObject
    • WebhookRecordingsObject
    • WebhookAssistantRequestPayload
    • WebhookAssistantRequestResponse
    • WebhookStatusUpdatePayload
    • WebhookToolCallsPayload
    • WebhookToolCallsResponse
    • WebhookEndOfCallReportPayload
API Reference
Documentatie
API Reference
Documentatie
Linkedin
  1. Contacten

Contact volledig bijwerken

PUT
/contacts/{id}
Last modified:2026-04-03 15:31:55
Maintainer:Not configured
Vervangt alle velden van het contact. Velden die niet worden meegestuurd worden op null gezet. Gebruik PATCH als je alleen specifieke velden wilt wijzigen.

Request

Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Bijgewerkt contact
Body

🟠400BadRequest
🟠401Unauthorized
🟠404NotFound
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/contacts/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "phone_number": "+31612345678",
    "full_name": "Jan de Vries",
    "email": "jan@devries.nl",
    "address": "Prinsengracht 456, Amsterdam",
    "last_interaction_at": "2019-08-24T14:15:22.123Z",
    "last_interaction_summary": "string"
}'
Response Response Example
200 - Example 1
{
    "contact_id": "d4e5f6a7-b8c9-0123-def0-1234567890ab",
    "phone_number": "+31612345678",
    "full_name": "Jan de Vries",
    "email": "jan@devries.nl",
    "address": "Keizersgracht 123, 1015 CJ Amsterdam",
    "last_interaction_at": "2026-02-18T14:12:01Z",
    "last_interaction_summary": "Klant belde over een retourverzoek. Retourlabel is verstuurd per e-mail.",
    "last_modified": "2026-02-18T14:15:00Z",
    "logs": {
        "notitie": "VIP klant, altijd prioriteit geven"
    }
}
Modified at 2026-04-03 15:31:55
Previous
Contact ophalen
Next
Contact gedeeltelijk bijwerken
Built with