From 4ec2935da5d72bba3f408634c10d01deec03b1e3 Mon Sep 17 00:00:00 2001 From: John Busby Date: Tue, 1 Apr 2025 09:00:17 -0700 Subject: [PATCH] use camel case --- extend/resources/receipt_attachments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extend/resources/receipt_attachments.py b/extend/resources/receipt_attachments.py index 7a4add7..f41d889 100644 --- a/extend/resources/receipt_attachments.py +++ b/extend/resources/receipt_attachments.py @@ -39,5 +39,5 @@ async def create_receipt_attachment( return await self._request( method="post_multipart", - data={"transaction_id": transaction_id}, + data={"transactionId": transaction_id}, files={"file": file})