Added

Grading API: Profiles and Jobs Added to Responses

We have extended the grading endpoints to return related objects and added query parameters to control the level of detail.

🔹 GET /profiles/grading

New

  • The response now includes a profiles field.
  • By default, profiles are returned with minimal fields.

Optional query parameter

ParameterTypeDefaultDescription
return_profilebooleanfalseWhen true, returns the full profile serializer instead of the minimal one.

🔹 GET /jobs/grading

New

  • The response now includes a jobs field.
  • By default, jobs are returned with minimal fields.

Optional query parameter

ParameterTypeDefaultDescription
return_jobbooleanfalseWhen true, returns the full job serializer instead of the minimal one.

🔹 Backward compatibility

  • Without the new query parameters, the API returns the same minimal profile/job data as before.
  • No breaking changes for existing clients.