{"info":{"_postman_id":"2137862b-284b-4caf-bd72-257c3c3cd903","name":"MySocialNetwork API","description":"<html><head></head><body><p>Collection pour tester l'API MySocialNetwork</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"49042504","collectionId":"2137862b-284b-4caf-bd72-257c3c3cd903","publishedId":"2sBXc8p4Ce","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-02-06T10:51:34.000Z"},"item":[{"name":"1. Auth","item":[{"name":"Inscription - Jean","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 201) { var json = pm.response.json(); if (json.user && json.user.id) pm.collectionVariables.set('userId', json.user.id); }"],"type":"text/javascript","id":"3be1ad49-9b44-40d2-8626-aae04dd570d2"}}],"id":"ae925de2-79bf-4538-83a7-0b328e335949","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"jean@test.com\",\n  \"password\": \"password123\",\n  \"firstname\": \"Jean\",\n  \"lastname\": \"Dupont\"\n}"},"url":"http://localhost:3000/auth/register","description":"<p>Inscription utilisateur JEAN</p>\n","urlObject":{"path":["auth","register"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae925de2-79bf-4538-83a7-0b328e335949"},{"name":"Inscription - Marie","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 201) { var json = pm.response.json(); if (json.user && json.user.id) pm.collectionVariables.set('userId2', json.user.id); }"],"type":"text/javascript","id":"a030a2c0-d2a2-497c-a5b4-40a03240583e"}}],"id":"92d769dc-d017-41c4-b315-31a607a09146","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"marie@test.com\",\n  \"password\": \"password123\",\n  \"firstname\": \"Marie\",\n  \"lastname\": \"Martin\"\n}"},"url":"http://localhost:3000/auth/register","description":"<p>Inscription d'un 2éme utilisateur MARIE</p>\n","urlObject":{"path":["auth","register"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"92d769dc-d017-41c4-b315-31a607a09146"},{"name":"Connexion","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 200) { var json = pm.response.json(); if (json.token) pm.collectionVariables.set('token', json.token); if (json.user && json.user.id) pm.collectionVariables.set('userId', json.user.id); }"],"type":"text/javascript","id":"c14acc56-5804-4e7b-b3d8-f6a8e90bacd9"}}],"id":"fbb24932-455f-4031-9a90-347595130196","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"jean@test.com\",\n  \"password\": \"password123\"\n}"},"url":"http://localhost:3000/auth/login","description":"<p>Connexion de JEAN</p>\n","urlObject":{"path":["auth","login"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"fbb24932-455f-4031-9a90-347595130196"}],"id":"9dda56f8-4866-4b6d-9488-83542cb20312","description":"<p>Inscription, Connexion et token</p>\n","_postman_id":"9dda56f8-4866-4b6d-9488-83542cb20312"},{"name":"2. Utilisateurs","item":[{"name":"Liste des utilisateurs","id":"2f1604eb-6c1e-4f28-bd88-8fb3573f005f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/users","description":"<p>Lister les utilisateurs</p>\n","urlObject":{"path":["users"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f1604eb-6c1e-4f28-bd88-8fb3573f005f"},{"name":"Détail utilisateur","id":"9ba49703-46a1-4647-91cd-fc8268130f13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/users/","description":"<p>Détails des utilisateurs</p>\n","urlObject":{"path":["users",""],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ba49703-46a1-4647-91cd-fc8268130f13"},{"name":"Modifier un utilisateur","id":"93447f0e-09f6-44a6-bd96-d9f57b8853f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"firstname\": \"Jean-Pierre\",\n  \"city\": \"Lyon\"\n}"},"url":"http://localhost:3000/users/","description":"<p>Modification d'un utilisateur</p>\n","urlObject":{"path":["users",""],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"93447f0e-09f6-44a6-bd96-d9f57b8853f0"}],"id":"e00557c0-58ad-4427-b45c-5c9f74226e72","description":"<p>CRUD Utilisateur</p>\n","_postman_id":"e00557c0-58ad-4427-b45c-5c9f74226e72"},{"name":"3. Groupes","item":[{"name":"Créer un groupe","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 201) { var json = pm.response.json(); if (json.id) pm.collectionVariables.set('groupId', json.id); }"],"type":"text/javascript","id":"fb28f473-b2d9-4bdc-b3d9-ebe5b113fea9"}}],"id":"b19c90b8-cf23-4200-9630-2060350af05b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Groupe test\",\n  \"description\": \"Mon premier groupe\",\n  \"type\": \"public\",\n  \"admins\": [\"\"],\n  \"members\": []\n}"},"url":"http://localhost:3000/groups","description":"<p>Création d'un groupe</p>\n","urlObject":{"path":["groups"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"b19c90b8-cf23-4200-9630-2060350af05b"},{"name":"Liste des groupes","id":"3d519c71-b5d4-4d81-8df8-b4b3b820a5a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/groups","description":"<p>Lister les groupes</p>\n","urlObject":{"path":["groups"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d519c71-b5d4-4d81-8df8-b4b3b820a5a0"},{"name":"Détail groupe","id":"d34ff38c-a936-4174-91ac-90699fc3a540","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/groups/","description":"<p>Détails des groupe</p>\n","urlObject":{"path":["groups",""],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"d34ff38c-a936-4174-91ac-90699fc3a540"},{"name":"Modifier un groupe","id":"e2bcf0a4-c56d-4d6b-be9d-8baefe7b293e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Groupe test (modifié)\",\n  \"description\": \"Description mise à jour\"\n}"},"url":"http://localhost:3000/groups/","description":"<p>Modification d'un groupe</p>\n","urlObject":{"path":["groups",""],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2bcf0a4-c56d-4d6b-be9d-8baefe7b293e"}],"id":"222629f8-c95f-407a-8e13-17501f21ed8d","description":"<p>Groupes et fils de discussions</p>\n","_postman_id":"222629f8-c95f-407a-8e13-17501f21ed8d"},{"name":"4. Événements","item":[{"name":"Créer un événement","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 201) { var json = pm.response.json(); if (json.id) pm.collectionVariables.set('eventId', json.id); }"],"type":"text/javascript","id":"6159fc17-6325-4dc2-ba5e-37e3178fa379"}}],"id":"0a82c859-cf4f-4f7a-955b-24ef24c3ddfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Soirée pizza\",\n  \"description\": \"Soirée entre amis\",\n  \"startDate\": \"2025-03-15T19:00:00.000Z\",\n  \"endDate\": \"2025-03-16T02:00:00.000Z\",\n  \"location\": \"Paris\",\n  \"isPrivate\": false,\n  \"organizers\": [\"\"],\n  \"participants\": [\"\"],\n  \"shoppingListEnabled\": true,\n  \"carpoolEnabled\": true\n}"},"url":"http://localhost:3000/events","description":"<p>Création d'u=évènements</p>\n","urlObject":{"path":["events"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a82c859-cf4f-4f7a-955b-24ef24c3ddfd"},{"name":"Liste des événements","id":"155811e9-eee6-452c-80e8-f7e327aa1152","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/events","description":"<p>Lister les évènements</p>\n","urlObject":{"path":["events"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"155811e9-eee6-452c-80e8-f7e327aa1152"},{"name":"Détail événement","id":"3e87ce38-3514-46d0-9f69-7e23385090d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/events/","description":"<p>Détails des évènements</p>\n","urlObject":{"path":["events",""],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e87ce38-3514-46d0-9f69-7e23385090d0"},{"name":"Modifier un événement","id":"30e3238c-b203-43d8-9edc-b1d05d688621","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Soirée pizza (modifiée)\",\n  \"location\": \"Lyon\"\n}"},"url":"http://localhost:3000/events/","description":"<p>Modification d'un évènement</p>\n","urlObject":{"path":["events",""],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"30e3238c-b203-43d8-9edc-b1d05d688621"}],"id":"cedc4197-aa0a-4fd2-bb00-79515192e323","description":"<p>Evènements, organisateurs et participants</p>\n","_postman_id":"cedc4197-aa0a-4fd2-bb00-79515192e323"},{"name":"5. Fils de discussion","item":[{"name":"Fil du groupe","id":"4be72a88-cdeb-4f19-9119-cc749c63852f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/discussion-threads?groupId=","description":"<p>Fil messages d'un groupe</p>\n","urlObject":{"path":["discussion-threads"],"host":["http://localhost:3000"],"query":[{"key":"groupId","value":""}],"variable":[]}},"response":[],"_postman_id":"4be72a88-cdeb-4f19-9119-cc749c63852f"},{"name":"Fil de l'événement","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 200) { var json = pm.response.json(); if (json[0] && json[0].id) pm.collectionVariables.set('threadId', json[0].id); }"],"type":"text/javascript","id":"34c2f2e0-2d7a-4b2a-9523-abea4b0c8e6f"}}],"id":"61b1c99a-b717-4ee1-9446-9e0da298d31e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/discussion-threads?eventId=","description":"<p>Fil message d'un évènenement</p>\n","urlObject":{"path":["discussion-threads"],"host":["http://localhost:3000"],"query":[{"key":"eventId","value":""}],"variable":[]}},"response":[],"_postman_id":"61b1c99a-b717-4ee1-9446-9e0da298d31e"}],"id":"e60e9af0-fadb-4a2d-99d7-b8467584cb83","description":"<p>Messages liées a un groupe ou un évènement</p>\n","_postman_id":"e60e9af0-fadb-4a2d-99d7-b8467584cb83"},{"name":"6. Albums photos","item":[{"name":"Albums de l'événement","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 200) { var json = pm.response.json(); if (json[0] && json[0].id) pm.collectionVariables.set('albumId', json[0].id); }"],"type":"text/javascript","id":"8c3ada7e-3513-41a9-9644-e040b9fd4a81"}}],"id":"c4cd52e1-f57b-4257-878e-e15662cefc35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/events//photo-albums","description":"<p>Affichage album photo</p>\n","urlObject":{"path":["events","","photo-albums"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4cd52e1-f57b-4257-878e-e15662cefc35"},{"name":"Ajouter une photo","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 201) { var json = pm.response.json(); if (json.id) pm.collectionVariables.set('photoId', json.id); }"],"type":"text/javascript","id":"27662b6a-29cf-45ef-9241-cb8380b0fa2a"}}],"id":"2ef53380-4e80-4432-a1ec-8e7aa19d1c27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"albumId\": \"\",\n  \"url\": \"https://example.com/photo.jpg\"\n}"},"url":"http://localhost:3000/photo-albums//photos","description":"<p>Ajout d'une photo</p>\n","urlObject":{"path":["photo-albums","","photos"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ef53380-4e80-4432-a1ec-8e7aa19d1c27"}],"id":"7c7254e8-15a3-4792-80aa-49b0c23e1035","description":"<p>Album photo et commentaires</p>\n","_postman_id":"7c7254e8-15a3-4792-80aa-49b0c23e1035"},{"name":"7. Sondages","item":[{"name":"Créer un sondage","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 201) { var json = pm.response.json(); if (json.id) pm.collectionVariables.set('pollId', json.id); }"],"type":"text/javascript","id":"a8f35d52-57fc-4475-928c-86ab63b78d58"}}],"id":"42c2d7f9-90a0-4a6b-be44-7a2ad4a9b35a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"eventId\": \"\",\n  \"title\": \"Pizza préférée ?\",\n  \"questions\": [\n    {\n      \"question\": \"Quelle pizza ?\",\n      \"options\": [\"Margherita\", \"4 fromages\", \"Peperoni\"]\n    }\n  ]\n}"},"url":"http://localhost:3000/polls","description":"<p>Création d'un sondage</p>\n","urlObject":{"path":["polls"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"42c2d7f9-90a0-4a6b-be44-7a2ad4a9b35a"},{"name":"Sondages de l'événement","id":"c0446318-45cc-47fb-a9c4-dd5658517d79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/events//polls","description":"<p>Sondage sur un évènement</p>\n","urlObject":{"path":["events","","polls"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0446318-45cc-47fb-a9c4-dd5658517d79"},{"name":"Voter","id":"35cbc3ae-fb69-4ee1-8b6d-413099303828","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"answers\": [\n    {\"questionIndex\": 0, \"chosenOptionIndex\": 0}\n  ]\n}"},"url":"http://localhost:3000/polls//vote","description":"<p>Voter</p>\n","urlObject":{"path":["polls","","vote"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"35cbc3ae-fb69-4ee1-8b6d-413099303828"}],"id":"3a8e391b-c9cb-4335-839f-02c3b692158c","description":"<p>Sondages et votes</p>\n","_postman_id":"3a8e391b-c9cb-4335-839f-02c3b692158c"},{"name":"8. Billetterie","item":[{"name":"Créer un type de billet","event":[{"listen":"test","script":{"exec":["if (pm.response.code === 201) { var json = pm.response.json(); if (json.id) pm.collectionVariables.set('ticketTypeId', json.id); }"],"type":"text/javascript","id":"35e0a1dc-9fea-4fdd-bb9a-851e9933dc98"}}],"id":"23e65957-7437-4413-95d9-a86203621692","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"eventId\": \"\",\n  \"name\": \"Standard\",\n  \"amount\": 15,\n  \"quantity\": 50\n}"},"url":"http://localhost:3000/events//ticket-types","description":"<p>Création d'un type de billet</p>\n","urlObject":{"path":["events","","ticket-types"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"23e65957-7437-4413-95d9-a86203621692"},{"name":"Acheter un billet","id":"5cfbebcf-b851-4ed6-a354-f6b76288f040","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ticketTypeId\": \"\",\n  \"firstName\": \"Paul\",\n  \"lastName\": \"Durand\",\n  \"address\": \"10 rue Example Paris\",\n  \"buyerEmail\": \"paul@test.com\"\n}"},"url":"http://localhost:3000/tickets/purchase","description":"<p>Achat d'un billet</p>\n","urlObject":{"path":["tickets","purchase"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cfbebcf-b851-4ed6-a354-f6b76288f040"}],"id":"032df0fa-dc34-4a03-8f3d-9e75085425af","description":"<p>Types de billets et achats</p>\n","_postman_id":"032df0fa-dc34-4a03-8f3d-9e75085425af"},{"name":"9. Bonus - Liste courses","item":[{"name":"Ajouter un élément","id":"37cd37a2-0c54-440b-96f8-aeadfd1ce34d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"eventId\": \"\",\n  \"name\": \"Coca\",\n  \"quantity\": 6,\n  \"arrivalTime\": \"2025-03-15T19:00:00.000Z\"\n}"},"url":"http://localhost:3000/events//shopping-items","description":"<p>Ajouter un produit</p>\n","urlObject":{"path":["events","","shopping-items"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"37cd37a2-0c54-440b-96f8-aeadfd1ce34d"},{"name":"Liste des courses","id":"a0bc665d-614e-467b-b6d5-476858327322","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/events//shopping-items","description":"<p>Lister les produits</p>\n","urlObject":{"path":["events","","shopping-items"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0bc665d-614e-467b-b6d5-476858327322"}],"id":"ed3ff682-2be5-42a6-a77d-b5e8d127f287","description":"<p>Element apporté</p>\n","_postman_id":"ed3ff682-2be5-42a6-a77d-b5e8d127f287"},{"name":"10. Bonus - Covoiturage","item":[{"name":"Proposer un covoiturage","id":"7a3731b5-80f9-4f9b-ae06-0162938a036a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer "}],"body":{"mode":"raw","raw":"{\n  \"eventId\": \"\",\n  \"departureLocation\": \"Lyon\",\n  \"departureTime\": \"2025-03-15T17:00:00.000Z\",\n  \"price\": 20,\n  \"availableSeats\": 3\n}"},"url":"http://localhost:3000/events//carpools","description":"<p>Proposer un covoiturage</p>\n","urlObject":{"path":["events","","carpools"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a3731b5-80f9-4f9b-ae06-0162938a036a"},{"name":"Liste des covoiturages","id":"ceecc2ed-1632-48d9-a861-969a279473dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/events//carpools","description":"<p>Liste des covoiturages disponibles</p>\n","urlObject":{"path":["events","","carpools"],"host":["http://localhost:3000"],"query":[],"variable":[]}},"response":[],"_postman_id":"ceecc2ed-1632-48d9-a861-969a279473dd"}],"id":"14b1e68d-5769-45f0-8417-f9477e6958dd","description":"<p>Proposition de trajet</p>\n","_postman_id":"14b1e68d-5769-45f0-8417-f9477e6958dd"},{"name":"New Request","id":"684b547e-f64d-46e7-98c4-da2e74ff8598","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"684b547e-f64d-46e7-98c4-da2e74ff8598"}],"variable":[{"key":"baseUrl","value":"http://localhost:3000"},{"key":"token","value":""},{"key":"userId","value":""},{"key":"userId2","value":""},{"key":"groupId","value":""},{"key":"eventId","value":""},{"key":"threadId","value":""},{"key":"albumId","value":""},{"key":"photoId","value":""},{"key":"pollId","value":""},{"key":"ticketTypeId","value":""}]}