post https://api.instantpay.in/contacts/tag
Enhance Data Organization with Instantpay’s Add Tag
Streamline your data management with Instantpay's Add Tag API. It helps businesses categorize and organize information. Our powerful API lets users add customizable tags to data elements. It provides a flexible, systematic way to classify and retrieve information.
Integrating the Add Tag API can change how businesses handle large datasets. It will make data more accessible and allow for deeper insights. Efficiently tagging and categorizing data improves organization. It also enables faster, more targeted analysis.
Unlock your data's potential with Instantpay's Add Tag API. It will make data management more organized, intuitive, and insightful.
Request Parameters
Name | Type | Requirement | Description |
---|---|---|---|
name | String | Mandatory | Tag Name |
hexColorCode | String | Mandatory | Color Code |
Sample Request
curl --location 'https://api.instantpay.in/contacts/tag' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--header 'Content-Type: application/json' \
--data '{
"name": "Sample Name",
"hexColorCode": "#FF1934"
}'
POST /contacts/tag HTTP/1.1
Host: api.instantpay.in
X-Ipay-Auth-Code: {{authCode}}
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Endpoint-Ip: {{endPointIP}}
Content-Type: application/json
Content-Length: 57
{
"name": "Sample Name",
"hexColorCode": "#FF1934"
}
Response Parameters
Name | Type | Description |
---|---|---|
statuscode | String | InstantPay Status Code |
actcode | String | Action Code |
status | String | Status message |
data | Array | Response Data (If Present) |
timestamp | String | Response time (YYYY-MM-DD HH:II:SS) |
ipay_uuid | String | Request reference number |
orderid | String | Transaction Id ( If transaction otherwise it is null ) |
environment | String | Live/Sandbox |
internalCode | String | It will be null |
Sample Response
{
"statuscode": "TXN",
"actcode": null,
"status": "Tag Added Successfully",
"data": {
"userId": 432352,
"name": "Testing",
"hexColorCode": "#FF1934",
"updated_at": "2023-05-04T09:22:32.581000Z",
"created_at": "2023-05-04T09:22:32.581000Z",
"_id": "645379580f08b4af410594f2"
},
"timestamp": "2023-05-04 14:52:32",
"ipay_uuid": "h0069915df07-b290-4b6f-9fd0-84e7601a52e9",
"orderid": null,
"environment": "LIVE",
"internalCode": null
}