Update contributor Billing Information
PUT/contributors/ {contributorId}/ billing-information/
v2
PUT
contributor-update-billing-information
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PUT \
-d '{"invoiceFooter":"USTID-Nr: DE123456789"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/contributors/f0f86186-0a5a-45b2-aa33-502777496347/billing-information
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.marketplace.contributorUpdateBillingInformation({
"contributorId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {
"invoiceFooter": "USTID-Nr: DE123456789"
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Marketplace\ContributorUpdateBillingInformation\ContributorUpdateBillingInformationRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Marketplace\ContributorUpdateBillingInformation\ContributorUpdateBillingInformationRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// ContributorUpdateBillingInformationRequestBody to learn how to construct a valid instance
$body = new ContributorUpdateBillingInformationRequestBody(/* TODO: ... */);
$request = (new ContributorUpdateBillingInformationRequest(
contributorId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->marketplace()->contributorUpdateBillingInformation($request);
var_dump($response->getBody();