Skip to main content
GET
/
investors
/
{investor_id}
/
disclosures
/
acceptances
List an investor's disclosure acceptances
curl --request GET \
  --url https://api.bluumfinance.com/v1/investors/{investor_id}/disclosures/acceptances \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "list",
  "url": "/v1/investors/inv_…/deposits",
  "has_more": false,
  "data": [
    {
      "id": "inv_01j9x8m2k7qpzwv3t5r6y8n0ab",
      "object": "investor",
      "created": 1747776000,
      "livemode": false,
      "data": {
        "investor_id": "<string>",
        "disclosure_id": "<string>",
        "version": "<string>",
        "signed_at": "2023-11-07T05:31:56Z",
        "ip_address": "<string>",
        "user_agent": "<string>",
        "actor_ref": "<string>"
      },
      "metadata": {}
    }
  ]
}

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

Prefixed public investor id (inv_…).

Query Parameters

disclosure_id
string

Restrict to acceptances of a specific disclosure id.

Response

Acceptance list.

List envelope. data holds the page of items; each item is itself wrapped in a ResourceEnvelope.

object
enum<string>
required
Available options:
list
url
string
required

The endpoint path that produced this list.

Example:

"/v1/investors/inv_…/deposits"

has_more
boolean
required

Whether more results exist beyond data.

Example:

false

data
object[]
required