Mykoop module responsible to manage mailing lists
#Documentation
##Endpoints
GET /json/mailinglists- See GetMailingLists
POST /json/mailinglists- See AddMailingLists
PUT /json/mailinglists/:idDELETE /json/mailinglists/:idPOST /json/users/:id/mailinglistsDELETE /json/users/:id/mailinglistsGET /json/users/:id/mailinglists
##Available Methods ###AddMailingList Creates a new mailing list with the provided name and description
addMailingList(
params: {
name: string;
description?: string;
showAtRegistration: boolean;
},
callback: (err?, result?: {id: number}) => void
);- params:
- name: name of the mailing list
- description: description of the mailing list
- showAtRegistration: flag to indicate if this mailing should appear in the user registration form
- callback: callback once the treatment is done
- err: Error or null
- result:
- id: id of the newly created mailing list
- Possible errors:
- app.name :
string;"duplicate": name of the mailing list already exists
- validation.name:
string[];"empty": name is empty"tooShort__#__": name is too short, # is the minimal length"tooLong__#__": name is too long, # is the maximal length
- app.name :
###UpdateMailingList Update the mailing list information
updateMailingList(
params: {
id: number;
name: string;
description?: string;
showAtRegistration: boolean;
},
callback: (err?) => void
)- params:
- id: id of the mailing list
- name: new name of the mailing list
- description: new description of the mailing list
- showAtRegistration: flag to indicate if this mailing should appear in the user registration form
- callback: callback once the treatment is done
- err: Error or null
- Possible errors:
- app.name :
string;"duplicate": name of the mailing list already exists
- app.id:
string;"invalid": id is invalid
- validation.id:
string[];"notAnInteger": id is not an integer
- validation.name:
string[];"empty": name is empty"tooShort__#__": name is too short, # is the minimal length"tooLong__#__": name is too long, # is the maximal length
- app.name :
###DeleteMailingList Delete the mailing list and unlink all user from it
deleteMailingList(
params: {
id: number;
},
callback: (err?) => void
);- params:
- id: id of the mailing list to delete
- callback: callback once the treatment is done
- err: Error or null
- Possible errors:
- app.id:
string;"invalid": id is invalid
- validation.id:
string[];"empty": mailing list id is missing"notAnInteger": mailing list id is not an integer
- app.id:
###GetMailingList Retrieves all the mailing list available
getMailingLists(
params: {},
callback: (err?, result?: {id: number; name: string; description: string;}[]) => void
)- params: empty
- callback: callback once the treatment is done
- err: Error or null
- result: list of mailing lists
- id: id of the mailing list
- name: name of the mailing list
- description: description of the mailing list
###RegisterToMailingList Register the user to the mailing list
registerToMailingList(
params: {
idUser: number;
idMailingList: number[];
},
callback: (err?) => void
)- params:
- idUser: id of the user that wants to register to the mailing list
- idMailingList: list of id of the mailing lists to register to
- callback: callback once the treatment is done
- err: Error or null
###UnregisterToMailingList Unregister the user of the mailing lists
unregisterToMailingList(
params: {
idUser: number;
idMailingList: number[];
},
callback: (err?) => void
)- params:
- idUser: id of the user
- idMailingList: list of id of the mailing lists to unregister from
- callback: callback once the treatment is done
- err: Error or null
###GetUserMailingLists Get all the mailing list the user is registered to
registerToMailingList(
params: {
id: number;
},
callback: (err?, result?: {id: number;}[]) => void
)- params:
- id: id of the user
- callback: callback once the treatment is done
- err: Error or null
- result: list of mailing lists
- id: id of the mailing list