ApiSkills

FP&A

scope: fpa:read

Financial Planning & Analysis: departments, cost centers, monthly budget vs actual.

Departments /departments

4 rows

Flat reference list of departments.

Fields

departmentcode

Sample row

{
  "department": "Finance",
  "code": "FIN"
}

Request

curl "https://api.ifsjaipur.cloud/playground/data/fpa/departments?shape=flat&page_size=50" \
  -H "x-api-key: YOUR_API_KEY"

Cost Centers /cost_centers

12 rows

Cost centers, nestable by department.

Fields

departmentcost_centername

Sample row

{
  "department": "Finance",
  "cost_center": "FIN-01",
  "name": "Finance Cost Center 1"
}

Request

curl "https://api.ifsjaipur.cloud/playground/data/fpa/cost_centers?shape=flat&page_size=50" \
  -H "x-api-key: YOUR_API_KEY"

Nestable by department — try ?shape=nested or ?shape=nested-list.

Monthly Actuals /actuals

288 rows

Monthly budget/actual/variance per cost center; nestable department → cost_center.

Fields

departmentcost_centermonthbudgetactualvariance

Sample row

{
  "department": "Finance",
  "cost_center": "FIN-01",
  "month": "2024-01",
  "budget": 70474.67,
  "actual": 67655.68,
  "variance": -2818.99
}

Request

curl "https://api.ifsjaipur.cloud/playground/data/fpa/actuals?shape=flat&page_size=50" \
  -H "x-api-key: YOUR_API_KEY"

Nestable by department → cost_center — try ?shape=nested or ?shape=nested-list.