Edit Client
Method
PUT https://api.ninjapay.me/webextension/api/v1/fiat/invoice/client/{id}Parameters
Request Body
Response
Code Example
Last updated
PUT https://api.ninjapay.me/webextension/api/v1/fiat/invoice/client/{id}Last updated
Body (application/json)
{
"name": "Aman A", // The name of the person
"phone_code": "91", // The country code for the phone number
"phone": "9876543211", // The phone number of the person
"email": "aman2@gmail.com", // The email address of the person
"website": "https://amanwebsite.com", // The website of the person or business
"street_address": "1234 Elm Street", // The street address of the person
"state": "Maharashtra", // The state where the person resides
"city": "Mumbai", // The city where the person resides
"country": "India", // The country where the person resides
"zip_code": "400001", // The postal code of the area where the person resides
"details": [
{
"PAN": "ABCDE1234F" // The PAN (Permanent Account Number) of the person
},
{
"GST": "27ABCDE1234F1Z5" // The GST (Goods and Services Tax) number of the person or business
}
]
}
{
"status": true,
"data": {},
"message": "Client details updated successfully"
}
const options = {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'API_KEY' //Invoice key required
},
body: {
"name": "Aman A", // The name of the person
"phone_code": "91", // The country code for the phone number
"phone": "9876543211", // The phone number of the person
"email": "aman2@gmail.com", // The email address of the person
"website": "https://amanwebsite.com", // The website of the person or business
"street_address": "1234 Elm Street", // The street address of the person
"state": "Maharashtra", // The state where the person resides
"city": "Mumbai", // The city where the person resides
"country": "India", // The country where the person resides
"zip_code": "400001", // The postal code of the area where the person resides
"details": [
{
"PAN": "ABCDE1234F" // The PAN (Permanent Account Number) of the person
},
{
"GST": "27ABCDE1234F1Z5" // The GST (Goods and Services Tax) number of the person or business
}
]
}
};
fetch('https://api.ninjapay.me/webextension/api/v1/fiat/invoice/client/{id}', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));