Skip to main content

Connector

Upsert

Inserts or updates a connector.

NameData TypeDefaultRequired
Namenvarchar(MAX)
Descriptionnvarchar(MAX)
SourceAppnvarchar(30)✔️
SendAppointmentToWebServicebitFalse
WebServiceAddressbitTrue✔️
TypeINT0
AuthTypeINT0
ApiTypeINT0
LoginNVARCHAR (50)
PasswordNVARCHAR (MAX)
  • This endpoint is available in the import API endpoint /import via the procedure mboc_upsertConnector.
  • Example body:
    [
    {
    "StoredProcedureName": "mboc_upsertConnector",
    "ParameterNames": ["SourceApp","SendAppointmentToWebService", "WebServiceAddress", "Type", "Login", "Password"],
    "ParameterValues": ["MYSOURCEAPP","true", "https://myendpoint.domain","1","test_user","test_password"]
    }
    ]

Delete

Removes a connector.

NameData TypeDefaultRequired
SourceAppnvarchar(100)✔️
  • This endpoint is available in the import API endpoint /import via the procedure mboc_deleteConnector.
  • Example body:
    [
    {
    "StoredProcedureName": "mboc_deleteConnector",
    "ParameterNames": ["SourceApp"],
    "ParameterValues": ["MYSOURCEAPP"]
    }
    ]

API reference

Back-Office System

The back office type enum supports the following values:

EnumRepresents
0None
1BC
2NAV
3Webhook
warning

Use the enum integer value, not the text value.

Authentication Type

The authentication type enum supports the following values:

EnumRepresents
0None
1Basic
2NTLM
3Windows
4MS Entra ID
5OAuth2: Client Credentials (Body Auth)
6OAuth2: Client Credentials (Basic Auth)
warning

Use the enum integer value, not the text value.

API type

EnumRepresents
0SOAP (XML)
1REST (JSON)
warning

Use the enum integer value, not the text value.