Groups

Groups represent organizations using Increase. You can retrieve information about your own organization via the API. More commonly, OAuth platforms can retrieve information about the organizations that have granted them access. Learn more about OAuth here.

The Group object
{ "ach_debit_status": "disabled", "activation_status": "activated", "created_at": "2020-01-31T23:59:59Z", "id": "group_1g4mhziu6kvrs3vz35um", "type": "group" }
Attributes
ach_debit_status
enum

If the Group is allowed to create ACH debits.

activation_status
enum

If the Group is activated or not.

created_at
string

The ISO 8601 time at which the Group was created.

id
string

The Group identifier.

type
string

A constant representing the object's type. For this resource it will always be group.

Retrieve Group details

Returns details for the currently authenticated Group.

curl \ --url "${INCREASE_URL}/groups/current" \ -H "Authorization: Bearer ${INCREASE_API_KEY}"