LEARNING

Obtaining your Account Information

Getting your information

Most API methods for circle require you to generate a token. To obtain your token you will need to gather the following information:

ArgumentDescription
CUSTOMER_IDCustomerCode available in your profile
APP_KEYAppKey available in your profile
USER_IDUserId available in your profile
TIMESTAMPCurrent Timestamp
SecretKeySecret Key used for your API

CustomerID, AppKey, SecretKey

Your Customer ID, App Key, and Secret Key can be obtained by logging into your account. They will be listed under the Subscriptions tab.

UserID

Your UserID is provided to you when you first sign up for a subscription.

TimeStamp

The Time Stamp is an Epoch time stamp, and can be created through a variable.

const d = new Date();

This will generate a new value each time it is used.