@appsemble/utils
Version:
Utility functions used in Appsemble internally
25 lines • 918 B
JavaScript
export const pathItems = {
parameters: [
{ $ref: '#/components/parameters/organizationId' },
{
name: 'organizationMemberId',
in: 'path',
description: 'The ID of the member to remove',
required: true,
$ref: '#/components/schemas/User/properties/id',
schema: { $ref: '#/components/schemas/User/properties/id' },
},
],
delete: {
tags: ['main', 'organization', 'member'],
description: 'Remove a member from the organization that matches the given id, or leave the organization if the member id matches the user’s member id',
operationId: 'removeOrganizationMember',
responses: {
204: {
description: 'The member has been successfully removed.',
},
},
security: [{ studio: [] }],
},
};
//# sourceMappingURL=memberId.js.map