Search + K

Command Palette

Search for a command to run...

Sign In

Delete an invoice item

DELETE /v1/invoiceitems/{invoiceitem}
Copy endpoint
https://api.stripe.com/

Parameters

path Path Parameters

Name Type
invoiceitem required
string

Request Body

application/x-www-form-urlencoded
{}

Responses

200 application/json

Successful response.

interface DeletedInvoiceitem {
deleted: true;
id: string;
object: "invoiceitem";
}
default application/json

Error response.

interface Error {
error: ApiErrors
interface ApiErrors {
advice_code?: string;
charge?: string;
code?: string;
decline_code?: string;
doc_url?: string;
message?: string;
network_advice_code?: string;
network_decline_code?: string;
param?: string;
payment_intent?: PaymentIntent;
payment_method?: PaymentMethod;
payment_method_type?: string;
request_log_url?: string;
setup_intent?: SetupIntent;
source?: BankAccount | Card | Source;
type: "api_error" | "card_error" | "idempotency_error" | "invalid_request_error";
}
;
}