curl --request POST \
--url https://xapi.bolta.io/v1/taxInvoices/issueRequest \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--header 'Supplier-Key: <supplier-key>' \
--data '
{
"date": "2024-08-24",
"supplier": {
"identificationNumber": "<string>",
"organizationName": "<string>",
"representativeName": "<string>",
"manager": {
"email": "jsmith@example.com",
"name": "<string>",
"telephone": "<string>"
},
"taxRegistrationId": "0001",
"address": "<string>",
"businessItem": "소프트웨어 개발 및 공급업",
"businessType": "정보통신업"
},
"supplied": {
"identificationNumber": "<string>",
"organizationName": "<string>",
"representativeName": "<string>",
"managers": [
{
"email": "jsmith@example.com",
"name": "<string>",
"telephone": "<string>"
}
],
"taxRegistrationId": "0001",
"address": "<string>",
"businessItem": "소프트웨어 개발 및 공급업",
"businessType": "정보통신업"
},
"items": [
{
"date": "2023-12-25",
"name": "<string>",
"supplyCost": 2,
"unitPrice": 1,
"quantity": 123,
"tax": 2,
"specification": "<string>",
"description": "<string>"
}
],
"description": "<string>"
}
'