AI Engineering Tools

AI Usage

AI No-Code and API Integration Automation Terms

Learn no-code platforms, connectors, APIs, endpoints, authentication, OAuth, webhooks, polling, payloads, rate limits, custom connectors, and secret management.

12 matching terms

Platforms and connectors

No-code and low-code automation

No-code and low-code automation

Meaning

Building workflows mainly through visual configuration, with little or optional custom code.

When to use it

Use it for well-bounded processes while applying the same security and testing standards as coded systems.

Practical example

Build an approval flow with visual trigger, condition, and action blocks.

Platforms and connectors

Connector

Connector

Meaning

A reusable package that exposes supported triggers and actions for a service.

When to use it

Review permissions, ownership, regional availability, and throttling limits.

Practical example

Connect the form service to the CRM create-record action.

APIs

Application programming interface (API)

Application programming interface (API)

Meaning

A defined contract through which software systems request data or operations from one another.

When to use it

Use an API when a packaged connector lacks the required operation or control.

Practical example

Call the CRM API to update an account's lifecycle stage.

APIs

Endpoint

Endpoint

Meaning

A specific network address and operation exposed by an API.

When to use it

Match the HTTP method, path, version, and expected request format.

Practical example

PATCH /v1/customers/{customer_id}

Security

Authentication

Authentication

Meaning

Verifying the identity of a user, application, or automated connection.

When to use it

Use supported strong methods and separate human accounts from service identities.

Practical example

Authenticate the workflow with a dedicated service account.

Security

OAuth

OAuth

Meaning

An authorization framework that grants scoped access without sharing a user's password with the client.

When to use it

Request the smallest scopes needed and manage token refresh and revocation.

Practical example

Request read-only calendar scope for availability checking.

Events

Webhook

Webhook

Meaning

An HTTP callback sent when an event occurs so another system can react quickly.

When to use it

Verify signatures, handle duplicate delivery, and return promptly.

Practical example

Receive order.updated and enqueue the automation job.

Events

Polling

Polling

Meaning

Checking a service repeatedly at an interval to detect new or changed data.

When to use it

Use it when event notifications are unavailable and respect rate limits.

Practical example

Check for new rows every 15 minutes using the last cursor.

Data

JSON payload

JSON payload

Meaning

Structured JSON data carried in an API request, response, or event.

When to use it

Validate required fields, types, encoding, and schema version.

Practical example

{ "request_id": "R-104", "status": "approved" }

Reliability

Rate limit

Rate limit

Meaning

A service restriction on how many requests may be made in a period.

When to use it

Queue work, batch requests, cache results, and back off after limit errors.

Practical example

On HTTP 429, wait for Retry-After before retrying.

Platforms and connectors

Custom connector

Custom connector

Meaning

A connector created to expose an organization's own API or an unsupported external service.

When to use it

Define authentication, operations, schemas, ownership, and lifecycle management.

Practical example

Create a connector for the internal expense approval API.

Security

Secret management

Secret management

Meaning

Secure storage and controlled use of API keys, tokens, certificates, and passwords.

When to use it

Keep secrets out of prompts, spreadsheets, logs, and workflow definitions.

Caution

Never paste long-lived credentials into AI prompts or shared workflow fields.

Practical example

Read the API token from an approved secret store at runtime.