API Reference Overview
Authentication
Consumers
Connections
Accounting
- Folders
- Book years
- Clients
- Suppliers
- Invoices
- Bank accounts
- Ledger accounts
- Journals
- Journal entries
- Employees
- Analytic plans
- Analytic accounts
- Miscellaneous operations
- Outstandings
- VAT codes
- Attachments
- Exports
Invoicing
- Contacts
- Invoices
- Products
- Taxes
- Opportunities
- Payments
- Payment methods
POS
- Orders
- Payment methods
- Payments
- Closure info
- Locations
- Products
- Categories
- Customers
- Objectives
eCommerce
- Orders
- Products & variants
- Categories
- Customers
- Payment methods
- Locations
- Countries
- Taxes
PMS
- Orders
- Invoices
- Payment methods
- Payments
- Closure info
- Locations
- Categories
- Customers
- Taxes
Payment
- Payments
- Balances
- Transactions
- Refunds
Banking
- Financial institutions
- Banking accounts
- Transactions
Advanced
- Webhooks
- Syncs
- Issues
- Datastores
Issues
Get details about one issue
Returns one specific issue. This includes as well the list of executions for this issue.
GET
/
issues
/
{issue_id}
Copy
Ask AI
curl --request GET \
--url https://api.chift.eu/issues/{issue_id} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"id": "<string>",
"consumer_id": "<string>",
"connection_id": "<string>",
"integration_id": 123,
"integration_name": "<string>",
"created_on": "2023-11-07T05:31:56Z",
"updated_on": "2023-11-07T05:31:56Z",
"last_seen": "2023-11-07T05:31:56Z",
"error": {
"error_code": "<string>",
"status": "<string>",
"title": "<string>",
"description": "<string>"
},
"occurrences": 123,
"level": "error",
"executions": []
}
Authorizations
This access token needs to be included in each of your request to the Chift API.
Path Parameters
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.chift.eu/issues/{issue_id} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"id": "<string>",
"consumer_id": "<string>",
"connection_id": "<string>",
"integration_id": 123,
"integration_name": "<string>",
"created_on": "2023-11-07T05:31:56Z",
"updated_on": "2023-11-07T05:31:56Z",
"last_seen": "2023-11-07T05:31:56Z",
"error": {
"error_code": "<string>",
"status": "<string>",
"title": "<string>",
"description": "<string>"
},
"occurrences": 123,
"level": "error",
"executions": []
}
Assistant
Responses are generated using AI and may contain mistakes.