Skip to main content
DELETE
/
send
/
groups
/
{id}
Delete a group
curl --request DELETE \
  --url https://staging-api.chip-in.asia/api/send/groups/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'checksum: <checksum>' \
  --header 'epoch: <epoch>'
{
  "id": 1,
  "name": "Vendor Payouts",
  "created_at": "2024-06-15T08:00:00.000Z",
  "updated_at": "2024-06-15T09:15:23.000Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

epoch
integer<int64>
required

Unix epoch timestamp Unix timestamp (seconds).

Example:

1619740800

checksum
string
required

Refer to checksum calculation

Path Parameters

id
integer<int64>
required
Example:

1

Response

Successful response

A group that labels a set of bank accounts (for example, Vendor Payouts or Employee Payroll).

id
integer<int64>
Example:

1

name
string
Example:

"Vendor Payouts"

created_at
string<date-time>
read-only

Object creation time in UTC.

Example:

"2024-06-15T08:00:00.000Z"

updated_at
string<date-time>
read-only

Object updated time in UTC.

Example:

"2024-06-15T08:00:00.000Z"