Show FundingAgency

GET /v1/fundingAgencies/{id}

Path parameters

  • id string Required

    FundingAgency ID

Responses

  • 200 application/json

    FundingAgency response

    Hide response attribute Show response attribute object
    • data object

      A funding agency

      Additional properties are allowed.

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