Create FundingAgency
POST /v1/fundingAgencies
curl \
-X POST https://api.azav-pilot.de/v1/fundingAgencies \
-H "Content-Type: application/json" \
-d '{"agency":{"id":"\u003cuuid v4\u003e","name":"AZAV","slug":"azav"}}'
Request example
{
"agency": {
"id": "<uuid v4>",
"name": "AZAV",
"slug": "azav"
}
}
Response examples (201)
{
"data": {
"id": "<uuid v4>",
"name": "AZAV",
"slug": "azav"
}
}