action increase_retrieve_group_details { label: "Retrieve Group details" description: "Returns details for the currently authenticated Group." provider: increase method: GET path: "/groups/current" encoding: json output: { type: "object" description: "Groups represent organizations using Increase. You can retrieve information about your own organization via the API, or (more commonly) OAuth platforms can retrieve information about the organizations that have granted them access." required: ["ach_debit_status", "activation_status", "created_at", "id", "type"] properties: { ach_debit_status: { type: "string" description: "If the Group is allowed to create ACH debits." enum: ["disabled", "enabled"] } activation_status: { type: "string" description: "If the Group is activated or not." enum: ["unactivated", "activated"] } created_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Group was created." } id: { type: "string" description: "The Group identifier." } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `group`." enum: ["group"] } } } }