Getting Started

Welcome to the Odido Developer Portal. This guide walks you through setting up access and making your first successful request to an Odido REST API.

All APIs available through the portal are REST-based and use JSON over HTTPS.

Access Prerequisites

Access to the Odido Developer Portal and its APIs is restricted and contract-based. Before you can authenticate or subscribe to any API, the following prerequisites must be met:

  • Active Odido customer relationship — Your organization must have an active commercial relationship with Odido.
  • API addendum / Developer Portal agreement — API access requires a separate contractual agreement covering:
    • Access to the Odido Developer Portal
    • Applicable commercial and usage terms

Access to the portal is not provisioned automatically as part of standard customer contracts.

New to Odido APIs?
If you are evaluating our APIs, refer to the API landing page on odido.nl and submit the lead form. Your request will be routed to the appropriate commercial contact for follow-up.

Existing customer requesting API access
If your organization is already an Odido customer, contact your assigned account manager or commercial contact to initiate the API access agreement and provisioning process.

Once contractual access has been confirmed, a Developer Portal account can be created and you may proceed with the technical onboarding steps below.

Partner onboarding overview

Before You Begin

Make sure the following applies to you:

  • You are an Odido customer
  • A Developer Portal account has been created for you (registration is per environment)
  • You have access to at least one API catalogue
  • You have a development environment capable of making HTTPS requests
  • You are familiar with basic REST concepts (HTTP methods, headers, JSON)

Environments

The Odido Developer Portal is available in multiple environments. Registration and credentials are separate per environment and are not shared.

  • Dev: https://developer-dev.odido.nl/
  • Agile: https://developer-agile.odido.nl/
  • Staging: https://developer-staging.odido.nl/
  • Production: https://developer.odido.nl/

Access to Production is separate from non-production environments.

Environment overview

Access Model

Access to APIs follows this structure:

Account → Catalogue → Product → API → Endpoints

  • Your account provides access to one or more catalogues
  • A catalogue contains products
  • A product contains one or more APIs
  • An API contains multiple endpoints

To use an API, you must subscribe to an API plan within the portal. After subscribing, you can create an application to obtain credentials. One application can access multiple APIs, depending on the subscriptions linked to it.

Step 1 — Log In

Log in to the appropriate Developer Portal environment.

  • External users log in using 2FA
  • Odido employees log in via SSO

If this is your first login, you will be prompted to configure your 2FA method.

Login page Login options

Step 2 — Subscribe to an API

  1. Navigate to the relevant catalogue
  2. Select the product
  3. Choose the API
  4. Subscribe to an available API plan

Once subscribed, you can proceed to create your application.

API subscription flow

Step 3 — Create an Application

To call an API, you must create an application in the portal. When creating an application:

  • A Client ID is generated automatically
  • A Client Secret is generated automatically

Important:

  • The Client Secret cannot be regenerated
  • If the secret is compromised, the application must be revoked and a new application must be created
  • A user can create multiple applications

Store your credentials securely.

Application creation

Step 4 — Obtain an Access Token

All Odido APIs use OAuth2 Client Credentials flow.

Token endpoint (per environment):

  • Dev: https://connect-dev.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token
  • Agile: https://connect-agile.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token
  • Staging: https://connect-staging.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token
  • Production: https://connect.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token

Token request example:

curl -X POST "https://connect-staging.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "grant_type=client_credentials" \
  -d "client_id=YOUR_CLIENT_ID" \
  -d "client_secret=YOUR_CLIENT_SECRET"

The response contains an access token.

  • The token type is Bearer
  • Token validity: 300 seconds (5 minutes)

Step 5 — Make Your First API Request

Once you have obtained an access token, include it in the Authorization header of your request.

Example:

curl -X GET "https://api-base-url/example-endpoint" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Accept: application/json"

All APIs:

  • Use HTTPS
  • Return JSON responses
  • Use standard HTTP status codes

Refer to the API Reference for endpoint-specific details.

Rate Limits

Rate limits may apply depending on the API plan you are subscribed to. For example, some plans may allow a defined number of requests per second. Daily or monthly quotas may vary depending on the API plan configuration.

Check the specific API plan details in the portal for applicable limits.

Next Steps

After successfully making your first call:

  • Explore additional endpoints in the API Reference
  • Review authentication and security best practices
  • Monitor your usage in the portal
  • Contact support if you encounter issues

You are now ready to build with Odido REST APIs.

Browsing Available API Products

Step 1 — Click "Explore APIs"

On the homepage, click Explore APIs to browse the available API catalog.

Dashboard

Step 2 — View API Product Details

For example, click More Info on:

👉 Genesys_Services_Oauth_External

MyApps

This displays product description, OAS link and available subscription plans.

Click on the -> next to the API name to view the OAS documentation

Create App

Subscribing to an API Plan

Step 1 — Click "Access with this plan"

Select the plan associated with the product. This adds the API Product to your Cart.

Catalog

Step 2 — Proceed to Cart

Click Go to Cart.

Catalog

Step 3 — Create a New Application

In the Select an App section:

  1. Choose Create a new App
  2. Provide:
    • App Name
    • Description
    • Redirect URL (any value is acceptable but must not be empty)
  3. LoginSSO
  4. Submit your request. LoginSSO

Viewing Your Application and Credentials

Step 4 — Go to "My Apps"

Click:

👉 Go to My Apps

Catalog

Your newly created application will appear in the list.

Step 5 — Open the App Details

Click the application name to view:

  • Client ID
  • Client Secret
  • Assigned API Products

These credentials will be used for OAuth authentication.

Catalog

Obtaining an OAuth Token

Use the retrieved credentials to request a token.

Token Request Example (Client Credentials Flow)

curl --location 'https://connect-agile.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data-urlencode 'client_id=xxxxxxx' \
  --data-urlencode 'client_secret=xxxxxxxxxx' \
  --data-urlencode 'scope=Genesys_Services_Oauth_External demoplan' \
  --data-urlencode 'grant_type=client_credentials'

This returns a JSON payload containing:

  • access_token
  • expires_in
  • token_type

Calling the Actual API

With the obtained token, call the target API:

API Call Example

curl --location 'https://api-agile.odido.nl/oauth/genesyscloud/api/v2/outbound/contactlists' \
  --header 'x-auth-token: Bearer xxxxxxx'

Replace:

  • xxxxx with your access token
  • Client credentials with your generated values

Support

If you have any questions or encounter issues, feel free to reach out to your assigned ODIDO point of contact.

Viewing analytics for usage, errors, and performance

Access the API usage dashboard from My Dashboard link as shown below

Catalog

Invite more organization users

Access the Users - from My Dashboard link as shown below

Catalog

Click on the Invite Your First user, fill in the form, assign the right role for the User. An invite email will be sent to the user and he follows the same registration process as described in the earlier session.

Catalog

How to access the API Product(s) ?

Go to My Apps under the My Dashboard from the profile menu.

  1. You will see all apps created by your organization.
    my Dashboard
  2. Click the App name you want to use for API access.
    my Apps
  3. Inside App Details you can find the access request status.
  4. For the Approved access request you can see the Client Credentials under Access and Credentials Info with below details:
    • Client ID
    • Client Secret
    • Authentication Method (OAuth2)
    • Redirect URLs
    • Expiry info
  5. Under View Client Type Information:
    • Grant Types (example: client_credentials)
    • Token Endpoint Auth Method (example: client_secret_basic)
    • Scope Permissions

Token endpoint (per environment):

  • Dev: https://connect-dev.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token
  • Agile: https://connect-agile.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token
  • Staging: https://connect-staging.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token
  • Production: https://connect.odido.nl/realms/tyk-dev-portal/protocol/openid-connect/token

Sample CURL Request

curl -X POST "Token Endpoint" \
-H "Content-Type: application/x-www-form-urlencoded" \
--data-urlencode "client_id=<client-id>" \
--data-urlencode "client_secret=<client-secret>" \
--data-urlencode "scope=<scope permissions>" \
--data-urlencode "grant_type=client_credentials"

Sample Response

{
"access_token":"eyJhbGciOi......",
"expires_in":300,
"refresh_expires_in":0,
"token_type":"Bearer",
"scope":"scope1 scope2"
}

API Call Example

curl -X GET <api_base_url>/endpoint \
-H "Authorization: Bearer <access_token>"