API Integrations in Python Blog - Page 2


Quick tips: REST scheduling, HL7 FHIR and more

2023-04-13

REST connections, how to schedule API integrations, how to connect to HL7 FHIR servers, SFTP automation and Microsoft 365 IMAP integrations are the latest quick tips in the series designed for Python integrators and automation practitioners. Read more

LDAP and Active Directory as Python API Services

2022-12-05

Turn LDAP and Active Directory into convenient REST API services that let external clients and applications use JSON to query the directories. Read more

IMAP and OAuth2 Integrations with Microsoft 365

2022-11-14

Microsoft 365 requires for all IMAP connections to use OAuth2. This can be challenging to configure in server-side automation and orchestration processes so Zato offers an automated that lets you access emails without requiring you to get into low-level OAuth2 details. Read more

HL7 FHIR Security with Basic Auth, OAuth and SSL/TLS

2022-10-10

An explanation of how and when to use Basic Auth, OAuth and SSL/TLS security definitions in HL7 FHIR connections. Read more

HL7 FHIR Integrations in Python

2022-10-04

Learn how to use Python with HL7 FHIR, a contemporary data model and message transfer protocol designed to facilitate the exchange of information among systems used in health care settings. Read more

Using OAuth in API Integrations

2022-09-19

OAuth is often employed in processes requiring permissions to be granted to frontend applications and end users. Yet, what we typically need in API systems integrations is a way to secure connections between the integration middleware and backend systems without a need for any ongoing human interactions. OAuth can be a good choice for that scenario and this article shows how it can be achieved. Read more

What is an API gateway?

2022-09-07

In this article, we are going to use Zato in its capacity as a multi-protocol Python API gateway - we will integrate a few popular technologies, accepting requests sent over protocols commonly used in frontend systems, enriching and passing them to backend systems and returning responses to the API clients using their preferred data formats. Read more

How to invoke REST APIs from Zato services

2022-08-23

This Zato article is a companion to an earlier post - previously, we covered accepting REST API calls and now we will look at how Zato services can invoke external REST endpoints. Read more

SSH commands as API microservices

2022-08-15

This is a quick guide on how to turn SSH commands into a REST API service. The use-case may be remote administration of devices or equipment that does not offer a REST interface or making sure that access to SSH commands is restricted to selected external REST-based API clients only. Read more

Understanding API rate-limiting techniques

2022-08-11

Enabling rate-limiting in Zato means that access to Zato APIs can be throttled per endpoint, user or service - including options to make limits apply to specific IP addresses only - and if limits are exceeded within a selected period of time, the invocation will fail. Let's check how to use it all. Read more