Create education info for the existing provider

Creates the education info for a specific provider.

Request
path Parameters
providerId
required
string <uuid>
Request Body schema: application/json
ecfmgNumber
string

Educational Commission for Foreign Medical Graduates number

ecfmgIssueDate
string <date-time>

Timestamp when the certificate was issued

graduateType
string

Degree program type

Enum: "Undergraduate" "Professional" "FifthPathway"
schoolName
string

Name of school

schoolCode
string

School code as defined by the National Student Clearinghouse

branchCode
string

Branch code as defined by the National Student Clearinghouse

startDate
string <date-time>

Timestamp when this provider started their degree program

endDate
string <date-time>

Timestamp when this provider finished their degree program

completed
boolean

Identifies if this provider completed their graduate education at this school

degree
string

Degree awarded

Responses
201

Created

400

Bad Request

401

Unauthorized

403

Forbidden

500

Server Error

post/providers/{providerId}/info/educations
Request samples
application/json
{
  • "ecfmgNumber": "string",
  • "ecfmgIssueDate": "2019-08-24T14:15:22Z",
  • "graduateType": "Undergraduate",
  • "schoolName": "string",
  • "schoolCode": "string",
  • "branchCode": "string",
  • "startDate": "2019-08-24T14:15:22Z",
  • "endDate": "2019-08-24T14:15:22Z",
  • "completed": true,
  • "degree": "string"
}
Response samples
application/json
{
  • "lastUpdatedAt": "2019-08-24T14:15:22Z",
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "ecfmgNumber": "string",
  • "ecfmgIssueDate": "2019-08-24T14:15:22Z",
  • "graduateType": "Undergraduate",
  • "schoolName": "string",
  • "schoolCode": "string",
  • "branchCode": "string",
  • "startDate": "2019-08-24T14:15:22Z",
  • "endDate": "2019-08-24T14:15:22Z",
  • "completed": true,
  • "degree": "string"
}