- Auth
- Customer
- Passengers
- invoice Info
- Favorite Flights
- Notifications
- Fast Actions
- Customer - Get ProfileGET
- Customer - Update ProfilePOST
- Customer - Update PasswordPOST
- Search History - FlightGET
- Customer - Remove AccountDELETE
- Utils
- Flight
- Bus
- Hotel
- Socket
- Auto Completes
- Queue / Socket
- Misc
- Payment
- Orders
- Blog
- Contents
- Refund
- Notifications
- Otp VerifyPOST
Invoice Info - Update
Testing Env
Testing Env
PATCH
https://test-api.ucuzyolu.com/customer/invoiceinfo/{{invoiceId}}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
client-id
string
optional
Default:
302382-1928283273-237723829-292999
Body Params application/json
address
string
required
district
string
required
zipcode
string
required
city
string
required
country
string
required
isCorporate
boolean
required
invoiceName
string
required
taxOffice
string
required
taxNumber
string
required
Example
{
"address": "string",
"district": "string",
"zipcode": "string",
"city": "string",
"country": "string",
"isCorporate": true,
"invoiceName": "string",
"taxOffice": "string",
"taxNumber": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PATCH 'https://test-api.ucuzyolu.com/customer/invoiceinfo/' \
--header 'client-id: 302382-1928283273-237723829-292999' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
data
null
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": null,
"success": true,
"code": 0,
"message": "Fatura bilgisi silindi."
}
Modified at 2024-11-28 01:29:13