openapi: 3.2.0 info: title: M1Gateway - External Member Education Level API version: v1 security: - basic: [] tags: - name: MemberEducationLevel paths: /ext/MemberEducationLevel/MemberId/{memberId}: get: tags: - MemberEducationLevel parameters: - in: path name: memberId required: true schema: type: integer format: int32 responses: '200': description: Success content: text/plain: schema: type: array items: {} application/json: schema: type: array items: {} text/json: schema: type: array items: {} /ext/MemberEducationLevel: post: tags: - MemberEducationLevel responses: '200': description: Success content: text/plain: schema: $ref: '#/components/schemas/Member_Education_Level' application/json: schema: $ref: '#/components/schemas/Member_Education_Level' text/json: schema: $ref: '#/components/schemas/Member_Education_Level' requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/Member_Education_Level' application/json: schema: $ref: '#/components/schemas/Member_Education_Level' text/json: schema: $ref: '#/components/schemas/Member_Education_Level' application/*+json: schema: $ref: '#/components/schemas/Member_Education_Level' delete: tags: - MemberEducationLevel responses: '200': description: Success content: text/plain: schema: $ref: '#/components/schemas/Member_Education_Level' application/json: schema: $ref: '#/components/schemas/Member_Education_Level' text/json: schema: $ref: '#/components/schemas/Member_Education_Level' requestBody: content: application/json-patch+json: schema: $ref: '#/components/schemas/Member_Education_Level' application/json: schema: $ref: '#/components/schemas/Member_Education_Level' text/json: schema: $ref: '#/components/schemas/Member_Education_Level' application/*+json: schema: $ref: '#/components/schemas/Member_Education_Level' components: schemas: Member_Education_Level: type: object properties: first_Inserted_By: type: string first_Inserted_Datetime: format: date-time type: string last_Changed_By: type: string last_Changed_Datetime: format: date-time type: string source_System_Id: format: int32 type: integer source_Method_Id: format: int32 type: integer firstName: type: string lastName: type: string coreEntityStatusCode: type: string canEdit: type: string sourceSystemDisplayName: type: string isInternal: type: boolean returnField: type: boolean isPubSub: type: boolean id: format: int32 type: integer member_Id: format: int32 type: integer entered_By_Association_Id: format: int32 type: integer education_Level_Code: type: string timestamp_Seq: format: int64 type: integer owning_Poe_Id: format: int32 type: integer educationLevelDescription: type: string enteredByAssociationName: type: string securitySchemes: basic: type: http scheme: basic description: Basic Authorization header using user and password