List All FundingAgencies

GET /v1/fundingAgencies

Responses

  • 200 application/json

    FundingAgency Response

    Hide response attribute Show response attribute object
    • data array[object]

      The funding agencies details

      Hide data attributes Show data attributes object
      • email string

        Funding agency email

      • id string

        Funding agency ID

      • insertedAt string(date-time)

        Creation timestamp

      • name string Required

        Funding agency name

      • partnerType enum Required

        Partner type

        Values are funding_agency or company.

      • type enum

        Funding agency type

        Values are bafa, jobcenter, bundeswehr, rentenversicherung, or other.

      • updatedAt string(date-time)

        Update timestamp

GET /v1/fundingAgencies
curl \
 -X GET http://localhost:4000/v1/fundingAgencies
Response examples (200)
{
  "data": [
    {
      "id": "<uuid v4>",
      "name": "Jobcenter Hamburg",
      "type": "jobcenter",
      "partnerType": "funding_agency"
    },
    {
      "id": "<uuid v4>",
      "name": "Jobcenter Hamburg",
      "type": "jobcenter",
      "partnerType": "funding_agency"
    }
  ]
}