Edit a Contact

Edit a contact by Contact Id

PUT https://smsverification.xyz/api/v2/sender/contact/{contactId}

Both body parameters are not required but you need to include at least one of them. Body parameters must be sent as a JSON

Path Parameters

NameTypeDescription

contactId*

Integer

Must declare Contact Id

Headers

NameTypeDescription

Authentication*

String

Request Body

NameTypeDescription

name

String

number

String

{
    "status": "success",
    "data": {
        "old_name": "Name",
        "old_number": "+441134960620",
        "new_name": "New Name",
        "new_number": "+441134960621"
    }
}

Last updated