Skip to main content
GET
/
investors
/
{investor_id}
/
cash-sweep
Get cash sweep enrollment
curl --request GET \
  --url https://api.bluumfinance.com/v1/investors/{investor_id}/cash-sweep \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "<string>",
  "object": "cash_sweep_enrollment",
  "created": 123,
  "livemode": true,
  "metadata": {},
  "investor_id": "<string>",
  "brokerage_account_id": "<string>",
  "apr_tier_name": "<string>",
  "apr_tier_id": "<string>",
  "account_rate_bps": 123,
  "enrolled_at": "2023-11-07T05:31:56Z",
  "unenrolled_at": "2023-11-07T05:31:56Z",
  "accepted_disclosures": [
    "<string>"
  ],
  "cutoff_acknowledgement": {
    "cutoff": "11:45 AM ET",
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

investor_id
string
required

Investor ID (prefixed, e.g. inv_...)

Response

Enrollment details

id
string

Prefixed enrollment ID (e.g. cse_...)

object
enum<string>
Available options:
cash_sweep_enrollment
created
integer

Unix timestamp of creation

livemode
boolean
metadata
object
investor_id
string
brokerage_account_id
string
variant
enum<string>
Available options:
non_shariah,
shariah
status
enum<string>
Available options:
pending_enrollment,
active,
pending_unenrollment,
inactive
apr_tier_name
string | null
apr_tier_id
string | null
account_rate_bps
integer | null
enrolled_at
string<date-time> | null
unenrolled_at
string<date-time> | null
accepted_disclosures
string[]

Ids of every HYC disclosure that was acknowledged on the way to this enrollment (pre-recorded + newly recorded inline on this request). Returned on the enroll response so the partner UI can show the full list without a follow-up GET on the disclosure-acceptances endpoint.

cutoff_acknowledgement
object

Acknowledgement of the High Yield Cash 11:45 AM ET processing cutoff. Returned on unenroll (and surfaced where else relevant) so partner UIs can render deterministic copy about when the request will take effect, without re-implementing the timezone math.