Learning Equivalency (GET, POST)

Retrieves and creates a learning equivalency record along with its source and target learning mappings.
Resource
1/connect/education/academic-operations/learning-equivalency
Resource example
1https://yourInstance.salesforce.com/services/data/v67.0/connect/education/academic-operations/learning-equivalency
Available version
66.0
HTTP methods
GET, POST
Request parameters for GET
Parameter Name Type Description Required or Optional Available Version
isActive Boolean Indicates if the equivalency is active. Optional 66.0
sourceExternalLearningIds String The ID of source external learning. Required 66.0
Response body for GET
Learning Equivalency Result
Request body for POST
JSON example
1{
2  "name": "English Transfer Equivalency",
3  "learningEquivalencyType": "General",
4  "startDate": "2026-01-01",
5  "endDate": "2029-12-25",
6  "status": "Draft",
7  "isActive": false,
8  "isPublished": false,
9  "learningProgramIds": ["0u2SG0000004bXFYAY"],
10  "category": "International students cat",
11  "source": {
12    "relationship": "AND",
13    "learnings": [
14      {
15        "referencedLearningId": "1W3SG0000000N1R0AU",
16        "minimumNumericGrade": 2,
17        "duration": 3,
18        "durationUnit": "Credit Hours"
19      }
20    ]
21  },
22  "target": [
23    {
24      "relationship": "AND",
25      "learningAchievementName": "ENG 1002 Group",
26      "learnings": [
27        {
28          "referencedLearningId": "0vYSG0000006hrt2AA",
29          "minimumNumericGrade": 8,
30          "duration": 3,
31          "durationUnit": "Credit Hours"
32        }
33      ]
34    }
35  ],
36  "customAttributes": []
37}
Properties
Name Type Required or Optional Description Available Version
category String Optional The category of the learning equivalency. 67.0
endDate String Optional The date until which the learning equivalency is effective. 67.0
isActive Boolean Optional Indicates whether the Learning Equivalency is active (true) or not (false). Default: false. 67.0
isPublished Boolean Optional Indicates whether the equivalency is published (true) or not (false). Default: false. 67.0
learningEquivalencyType String Optional The type of the learning equivalency. 67.0
learningProgramIds String[] Optional The list of learning program IDs associated with this equivalency. 67.0
name String Required The name of the learning equivalency. 67.0
source Learnings Mapping Input[] Required The source learning mappings that can be substituted by the target learnings. 67.0
startDate String Optional The date from which the learning equivalency is effective. 67.0
status String Optional The status of the learning equivalency (e.g., Draft, Active). 67.0
target Learnings Mapping Input[] Optional The target learning mappings that can substitute the source learnings. 67.0
Response body for POST
Learning Equivalency Creation