Skip to main content

Update a contact

PUT 

/v3/contacts/:id

Update a contact

Request

Path Parameters

    id numberrequired

    ID of the contact to be updated

Header Parameters

    authorization stringrequired

    Possible values: Value must match regular expression /Bearer [^\s]+/

    Default value: Bearer <Token>

    Custom Token generated from the App

Body

    full_name string

    Possible values: <= 255 characters

    Full Name of contact

    email string

    Possible values: <= 255 characters

    Email of contact

    phone string

    Possible values: <= 255 characters

    Phone number of the contact

    mobile string

    Possible values: <= 255 characters

    Mobile number of the contact

    job_title string

    Possible values: <= 255 characters

    Job Title of the contact

Responses

Successful

Schema

    data

    object

    id numberrequired

    ID of the contact

    name string

    Full Name of contact

    email string

    Email of contact

    active booleanrequired

    if true, indicates the contact will actively receive email and sms shares

    unsubscribed booleanrequired

    if true, indicates that the contact is unsubscribed from receiving emails

    unsubscribed_at daterequired

    when the contact has unsubscribed

    phone string

    Phone number of the contact

    mobile string

    Mobile number of the contact

    jobTitle string

    Job Title of the contact

    contactLists

    object[]

    List of Labels the contact has to be added into

  • Array [

  • id numberrequired

    ID of the Label

    name stringrequired

    Name of the label

  • ]

Loading...