Update Person

Request Parameters

NameTypeRequirementDescription
personIdStringMandatoryId of the Person
gcIdStringMandatoryContact Id(You will get from Add Contact Response)
contactPersonNameStringMandatoryName of the Person
emailStringMandatoryEmail Id
mobileStringMandatoryMobile Number
descriptionStringMandatoryRemarks

Sample Request

curl --location --request PATCH 'https://api.instantpay.in/contacts/person' \
--header 'XContent-Type: application/json' \
--header 'X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOQ8l80uxEOrgU6T3Oc4znVc=' \
--header 'X-Ipay-Client-Secret: 55bb356f8d28953c47b40286db23b3aba8e3902e6a0d923f90730e9f6e4b3fcb' \
--header 'X-Ipay-Endpoint-Ip:  14.142.186.142' \
--header 'X-Ipay-Auth-Code: 1' \
--header 'Content-Type: application/json' \
--data-raw '{
    "personId" : "6453951835fca2f80f074002",
    "gcId" : "645383ba4acec95a32089822",
    "contactPersonName" : "Sample Name",
    "email" : "[email protected]",
    "mobile" : "7428585742",
    "description" : "test desc"

}'
PATCH /contacts/person HTTP/1.1
Host: api.instantpay.in
XContent-Type: application/json
X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOQ8l80uxEOrgU6T3Oc4znVc=
X-Ipay-Client-Secret: 55bb356f8d28953c47b40286db23b3aba8e3902e6a0d923f90730e9f6e4b3fcb
X-Ipay-Endpoint-Ip:  14.142.186.142
X-Ipay-Auth-Code: 1
Content-Type: application/json
Content-Length: 238

{
    "personId" : "6453951835fca2f80f074002",
    "gcId" : "645383ba4acec95a32089822",
    "contactPersonName" : "Sample Name",
    "email" : "[email protected]",
    "mobile" : "7428585742",
    "description" : "test desc"

}'

Response Parameter

Parameter NameTypeDescription
statuscodeStringInstantpay status code
actcodeStringAction code
statusStringStatus Message
dataArrayResponse data(if Present)
timestampStringResponse time (YYYY-MM-DD HH:II:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id ( If transaction otherwise it is null )
environmentStringLive/Sandbox
internalCodeStringit will be null
{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Contact Person Updated Successfully",
    "data": {
        "gcId": "645383ba4acec95a32089822",
        "contactPersonName": "Sample Name",
        "email": "[email protected]",
        "mobile": "7428585742",
        "description": "test desc",
        "callingCode": "+91"
    },
    "timestamp": "2023-05-04 16:51:52",
    "ipay_uuid": "h006991609b4-b4c5-4327-ae8d-77536300adc5",
    "orderid": null,
    "environment": "LIVE",
    "internalCode": null
}
Language
Click Try It! to start a request and see the response here!