Skip to main content
GET
/
regulatory
/
bundles
/
{bundle_sid}
Get Regulatory Bundle Details
curl --request GET \
  --url https://api.kallabot.com/regulatory/bundles/{bundle_sid} \
  --header 'Authorization: Bearer <token>'
{
  "bundle": {
    "sid": "<string>",
    "friendly_name": "<string>",
    "status": "<string>",
    "regulation_sid": "<string>",
    "iso_country": "<string>",
    "end_user_type": "<string>",
    "number_type": "<string>",
    "email": "<string>",
    "date_created": "2023-11-07T05:31:56Z",
    "date_updated": "2023-11-07T05:31:56Z",
    "valid_until": "2023-11-07T05:31:56Z"
  },
  "item_assignments": [
    {
      "sid": "<string>",
      "bundle_sid": "<string>",
      "object_sid": "<string>",
      "date_created": "2023-11-07T05:31:56Z"
    }
  ],
  "evaluations": [
    {
      "sid": "<string>",
      "bundle_sid": "<string>",
      "status": "<string>",
      "results": {},
      "date_created": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

bundle_sid
string
required

Regulatory bundle SID

Response

Regulatory bundle details

bundle
object
item_assignments
object[]
evaluations
object[]