QUICK LINKS

Support
Issue Tracker
[Services]
Questions
[uAchieve 4.5 Applications]
[uAchieve 5.0 Application]
[uAchieve 5.1 Application]
Transferology
TES
[Training & Conferences]
Accessibility

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If Transferology successfully finds the student and request, the XML document is well formed, the content is valid and content is saved in the student's Transferology courses, then Transferology replies with the following:

...

If Transferology encounters an error (i.e., parsing, validation, or finding), a failure result (non-zero status) is provided. Below is an example failure result:

...

The CollegeTranscript XML document must be well-formed and must contain the minimum elements that Transferology requires. Transferology does not strictly validate the XML document against the schema due to the number of unused elements in the PESC schema. The following XML shows the minimum information that must exist in the document. The example data shows the key and uid values from the earlier example Course Import URL-:

Code Block
xml
xml
  <CollegeTranscript>
      <TransmissionData>
         <DocumentID>201120416394062</DocumentID>
      </TransmissionData>
      <Student>
         <Person>
            <RecipientAssignedID>publicjq@MIAMI</RecipientAssignedID>
         </Person>
        <AcademicRecord> 
           <School>
             <OrganizationName>Miami</OrganizationName>
             <FICE>007104</FICE>
           </School>
           <Course> 
             <CourseSubjectAbbreviation>ENG</CourseSubjectAbbreviation>
             <CourseNumber>111</CourseNumber>
             <CourseTitle>English Composition</CourseTitle>
             <CourseAcademicGrade>A</CourseAcademicGrade>
             <CourseCreditEarned>3.0</CourseCreditEarned>
             <CourseBeginDate>2007-08-26</CourseBeginDate>
           </Course>
        </AcademicRecord>
      </Student>
  </CollegeTranscript>

...