Edit Product
PUT
https://us-central1-appgregator.cloudfunctions.net/stripe/products/
Query Parameters
Name
Type
Description
name*
String
ft-4
connection_name*
String
stripe-1
Headers
Name
Type
Description
x-api-key*
String
XXX
Request Body
Name
Type
Description
active
Boolean
false
{
"id": "003",
"object": "product",
"active": false,
"attributes": [],
"created": 1675735411,
"default_price": "price_1MYgWtIyq0PiFIhUAK9M3qbi",
"description": "webinar",
"images": [],
"livemode": false,
"metadata": {},
"name": "webinar3",
"package_dimensions": null,
"shippable": null,
"statement_descriptor": null,
"tax_code": null,
"type": "service",
"unit_label": null,
"updated": 1675824475,
"url": null
}
curl --location --request PUT 'https://us-central1-appgregator.cloudfunctions.net/stripe/products/003?name=ft-4&connection_name=stripe-1' \
--header 'x-api-key: XXX' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'active=false'
var axios = require('axios');
var qs = require('qs');
var data = qs.stringify({
'active': 'false'
});
var config = {
method: 'put',
url: 'https://us-central1-appgregator.cloudfunctions.net/stripe/products/003?name=ft-4&connection_name=stripe-1',
headers: {
'x-api-key': 'XXX',
'Content-Type': 'application/x-www-form-urlencoded'
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://us-central1-appgregator.cloudfunctions.net/stripe/products/003?name=ft-4&connection_name=stripe-1',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'PUT',
CURLOPT_POSTFIELDS => 'active=false',
CURLOPT_HTTPHEADER => array(
'x-api-key: XXX',
'Content-Type: application/x-www-form-urlencoded'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Last updated