Building an API call

On this page we'll explain how to call our API. You'll learn which endpoint to use, which methods are available and how to sign your request.

Endpoint

For all calls made to our API, the endpoint is:

https://submit.effectconnect.com/v1/

For every call there's an URI that needs to be added to this base URL.

Methods

The method you need to use depends on the call you try to make.

POST Create
GET Read
PUT Update
DELETE Delete

 

 

Headers

We require the following headers for every call you make to our API.

Content-length Length of the payload
KEY Public API key
VERSION Version
URI Uri
SIGNATURE Signature
TIME Exact time of when you make the call

 

The following headers are optional:

RESPONSETYPE XML or JSON (default: XML)
RESPONSELANGUAGE Language in which errors will be returned (default EN)

 

 

Signature

To make a valid API call, we need a signature. Check out our SDK, it's all taken care of in there.