public async Task <StudentInterventionAssociation> CreateAssociation(ScoringInterventionPostBody body)
        {
            var odsApi = await _odsApiClientProvider.NewResourcesClient();

            var interventionv3 = await odsApi.Get <InterventionModelv3>($"interventions/{body.InterventionId}");

            var studentIntervention = new StudentInterventionAssociationv3
            {
                InterventionEffectivenesses = null,
                InterventionReference       = new InterventionReferencev3
                {
                    EducationOrganizationId        = interventionv3.EducationOrganizationReference.EducationOrganizationId,
                    InterventionIdentificationCode = interventionv3.InterventionIdentificationCode,
                },
                StudentReference = new StudentReferencev3
                {
                    StudentUniqueId = body.StudentUniqueId,
                },
            };

            var response = await odsApi.Post("studentInterventionAssociations", studentIntervention);

            await odsApi.HandleHttpResponse(response);

            // TODO Store in cache

            return(studentIntervention.MapToStudentInterventionAssociation());
        }