Getting Started
Core Concepts
Core
- PUTUpsert customer
- GETList connections
- POSTCreate connection
- GETGet connection
- DELDelete connection
- PATCHUpdate connection
- POSTCheck connection
- POSTSync connection
- GETAdmin list connector configs
- POSTAdmin upsert connector config
- GETAdmin get connector config
- DELAdmin delete connector config
- PATCHAdmin update connector config
- GETList connector config infos
- GETList pipelines
- POSTCreate pipeline
- DELDelete pipeline
- PATCHUpdate pipeline
- POSTSync pipeline
Sales Engagement
CRM
- GETCount Entities
- GETList Accounts
- POSTCreate account
- GETGet Account
- PATCHUpdate account
- POSTBatch read accounts
- POSTUpsert account
- GETList Contacts
- POSTCreate contact
- GETGet Contact
- PATCHUpdate contact
- POSTBatch read contacts
- POSTUpsert contact
- GETList Leads
- GETGet Lead
- GETList Opportunities
- GETGet Opportunity
- GETList notes
- POSTCreate note
- GETList users
- GETGet user
- GETList custom object records
- POSTCreate custom object record
- GETMetadata list objects
- POSTMetadata create object
- GETMetadata list object properties
- POSTMetadata create object property
- POSTMetadata create association
Accounting
File Storage
API Reference
Core
Admin list connector configs
Core
Admin list connector configs
GET
/
core
/
connector_config
curl --request GET \
--url https://api.openint.dev/v0/core/connector_config \
--header 'x-apikey: <api-key>' \
--header 'x-connection-id: <api-key>'
[
{
"createdAt": "<string>",
"updatedAt": "<string>",
"id": "<string>",
"connectorName": "<string>",
"config": {},
"orgId": "<string>",
"displayName": "<string>",
"disabled": true,
"defaultPipeOut": {
"streams": {},
"links": [
"unified_banking"
],
"destination_id": "<string>"
},
"defaultPipeIn": {
"links": [
"unified_banking"
],
"source_id": "<string>"
},
"envName": "<string>",
"metadata": "<any>"
}
]
Response
200
application/json
Successful response
The response is of type object[]
.
curl --request GET \
--url https://api.openint.dev/v0/core/connector_config \
--header 'x-apikey: <api-key>' \
--header 'x-connection-id: <api-key>'
[
{
"createdAt": "<string>",
"updatedAt": "<string>",
"id": "<string>",
"connectorName": "<string>",
"config": {},
"orgId": "<string>",
"displayName": "<string>",
"disabled": true,
"defaultPipeOut": {
"streams": {},
"links": [
"unified_banking"
],
"destination_id": "<string>"
},
"defaultPipeIn": {
"links": [
"unified_banking"
],
"source_id": "<string>"
},
"envName": "<string>",
"metadata": "<any>"
}
]