GET /v1/orgs/me/ip-allowlist

Tags: orgs

Responses

200 — CIDR entries on the caller's org allowlist

JSON
{
  "items": {
    "$ref": "#/components/schemas/IpAllowlistEntry"
  },
  "type": "array"
}

401 — UNAUTHENTICATED

Code samples

TypeScript

TypeScript
import { firecase } from "@firecase/sdk";

const result = await firecase.get("/orgs/me/ip-allowlist");
console.log(result);

Python

Python
import firecase

result = firecase.get("/orgs/me/ip-allowlist")
print(result)

curl

Bash
curl -X GET https://api.firecase.ai/v1/orgs/me/ip-allowlist \
  -H "Authorization: Bearer $FIRECASE_API_KEY" \
  -H "Content-Type: application/json"