Skip to main content

eid

Lookup Partner by EID

David Link avatar
Written by David Link
Updated over 2 months ago

Use this endpoint to look up which partner corresponds to a given eid. This is helpful for real-time attribution when someone clicks an affiliate link and you want to immediately identify the associated partner.

Authentication

Before calling this endpoint, you must first authenticate and retrieve an access token. Use that token as a Bearer Token in the request header.

Endpoint

POST https://eulerapp.com/api/1.1/wf/eid

Request Headers

Header

Value

Content-Type

application/json

Authorization

Bearer YOUR_ACCESS_TOKEN

Request Body

The body should be formatted as JSON with the following fields:

Field

Type

Required

Description

eid

string

Yes

The Euler EID you want to look up

Response

On success, the API will return the partner’s CRM ID and name:

{ "partner_crm_id": "123456789", "partner_name": "Acme Partners" }

Errors

HTTP Code

Message

Description

401

Invalid authentication

Your bearer token is invalid or expired. Re-authenticate to get a new token.

200 - Error

The eid you searched for doesn't exist

Double-check the value you’re sending. The EID must exist in Euler’s system.

Did this answer your question?