diff --git a/.idea/flatdoc.iml b/.idea/flatdoc.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/flatdoc.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..e87177d --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,14 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..28a804d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..7de3269 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..ef5996a --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1548547114846 + + + + + + + + \ No newline at end of file diff --git a/Clients.md b/Clients.md new file mode 100644 index 0000000..4fe757c --- /dev/null +++ b/Clients.md @@ -0,0 +1,596 @@ +# Clients + +This has endpoints for managing clients + +## Add Campaign + +This creates a new campaign under the client account. + +> Endpoint: versus_add_campaign + +> Payload + +``` javascript +{ + "docRef": "nqaXKB0SzWN6xh7RVyzl", + "clientName": "clientName", + "campaignName": "campaignName", + "description": "description", + "startDate": "2019-01-01", + "endDate": "2019-06-30", + "country": "NG", + "startAge": 18, + "endAge": 60 +} +``` + +> Response + +``` javascript +{ + "campaign": { + "clientRef": "nqaXKB0SzWN6xh7RVyzl", + "clientName": "clientName", + "campaignName": "campaignName", + "description": "description", + "startDate": "2019-01-01", + "endDate": "2019-06-30", + "country": "NG", + "startAge": 18, + "endAge": 60 + } +} +``` + + +## Add Comparison + +This adds a new brand to the comparisons that a client carry out. The fields in the payload are listed below. + +> Endpoint: versus_add_comparison + +> Payload + +``` javascript +{ + "docRef": "sz4rWLgN7yt0PU3frmjX", + "brand": { + "brandName": "1st Brand", + "otherBrandName": "1st other brand" + } +} +``` + +> Response + +``` javascript + +``` + +## Add Member + +This adds a new user to a client account. + +> Endpoint: versus_add_member + +> Payload + +``` javascript +{ + "docRef": "sz4rWLgN7yt0PU3frmjX", + "member":{"email": "robert@otheremail.com", "canEdit": true} +} +``` + +> Response + +``` javascript + +``` + +## Add Question + +This adds a question to a campaign. + +> Endpoint: versus_add_question + +> Payload + +``` javascript +{ + "campaignRef": "86fea0f1-7c00-4ab7-bbc0-6125a4326125", + "question": "Test Question 1", + "options": "Positive, Neutral, Negative", + "campaignName":"Test Campaign 1", + "clientRef":"nqaXKB0SzWN6xh7RVyzl", + "clientName":"The Enterprise" +} +``` + +> Response + +``` javascript + +{ + "question": { + "question": "Test Question 1", + "options": "Positive, Neutral, Negative", + "campaignRef": "86fea0f1-7c00-4ab7-bbc0-6125a4326125", + "clientRef": "nqaXKB0SzWN6xh7RVyzl", + "campaignName": "Test Campaign 1", + "clientName": "The Enterprise", + "questionRef": "0899c86d-cbf6-4490-872f-269dcedad05d" + } +} +``` + +## Create Client + +Create a new client on the Versus platform. The response to this event causes a Welcome to Versus email to be triggered. + +> Endpoint: versus_create_client + +> Payload + +``` javascript +{ + "name": "Deji Ibrahim", + "email": "deji.a.ibrahim@gmail.com", + "uniqueIdentifier": "deji" +} +``` + +> Response + +``` javascript +{ + "docRef": "dZU51YTPmB2qqA030JA4" +} +``` + +## Create Member + +This creates a user account when they accept the invite from a client. + +> Endpoint: versus_create_member + +> Payload + +``` javascript +{ + "email": "deji@enterfive.com", + "docRef": "cueIYrE3PyXXJmu4tPea", + "firstName": "Dejiasd", + "lastName": "ibrahimm", + "password": "deji1234" +} +``` + +> Response + +``` javascript + +``` + +## Delete Comparison + +Delete a brand comparison from a client account. + +> Endpoint: versus_delete_comparison + +> Payload + +``` javascript +{ + "clientRef": “sz4rWLgN7yt0PU3frmjX", + "brand": "1st Brand" +} +``` + +> Response + +``` javascript + +``` + +## Delete Member + +Remove a user from a client account. + +> Endpoint: versus_delete_member + +> Payload + +``` javascript +{ + "clientRef": “sz4rWLgN7yt0PU3frmjX", + "email": "abc@email.com" +} +``` + +> Response + +``` javascript + +``` + +## Edit Client + +This edits the details on a client's account. + +> Endpoint: versus_edit_client + +> Payload + +``` javascript +{ + "docRef": "sz4rWLgN7yt0PU3frmjX", + "alertOptions": { + "criticalMentions": true, + "sentimentReports": "daily" + }, + "brandName": "My brand", + "facebook":"fb.me/brand", + "filterProfanity": true, + "firstName": "Deji", + "lastName": "Ibrahim", + "officeAddress": "Victoria Island", + "organizationName": "Enterfive", + "otherBrandNames": "My other brand", + "responseEmails": "abc@e5.com, def@e5.com", + "topics": "Pricing, experience", + "twitterHandle": "twitter" +} +``` + +> Response + +``` javascript +{ + "docRef": "dZU51YTPmB2qqA030JA4" +} +``` + +## Get Campaigns + +Returns a list of campaigns belonging to a client + +> Endpoint: versus_get_campaigns + +> Payload + +``` javascript +{ + "docRef": "nqaXKB0SzWN6xh7RVyzl" +} +``` + +> Response + +``` javascript +{ + "campaigns": [ + { + "startDate": "2019-01-01", + "description": "description", + "campaignName": "campaignName", + "startAge": 18, + "country": "NG", + "endAge": 60, + "clientName": "clientName", + "clientRef": "nqaXKB0SzWN6xh7RVyzl", + "endDate": "2019-06-30", + "docRef": "NuYgN5IyhPpeEDq9bxoz" + }, + { + "endAge": 65, + "clientRef": "nqaXKB0SzWN6xh7RVyzl", + "clientName": "The Enterprise", + "endDate": "2019-03-30", + "startDate": "2019-01-01", + "description": "Campaign for McScoutie", + "campaignName": "First Campaign", + "startAge": 18, + "country": "Nigeria", + "docRef": "WXGj5wfVS6DKpyecChYm" + } + ] +} +``` + +## Get Client + +Returns the details associated with a client account + +> Endpoint: versus_get_client + +> Payload + +``` javascript +{ + "docRef": "sz4rWLgN7yt0PU3frmjX" +} +``` + +## Get Clients + +Returns an array of objects showing the name and docRef of clients in a specified category + +> Endpoint: versus_get_clients + +> Payload + +``` javascript +{"category":"Banking"} +``` + +> Response + +``` javascript + +{ + "clients": [ + { + "docRef": "68CgvyEYhGlLcAlDFdol", + "name": "Kemdi Limited" + }, + { + "docRef": "mvPKqA09G4Fm09RMxs4a", + "name": null + }, + { + "docRef": "nqaXKB0SzWN6xh7RVyzl", + "name": "The Enterprise" + }, + { + "docRef": "uDs47BUH4v1EWXP0lPf7", + "name": "Amaka Limited" + }, + { + "docRef": "xzfTjhjSw7UHOSbtRKXS", + "name": "Chika Limited" + } + ] +} +``` + +> Response + +``` javascript + +``` + +## Get Comparisons + +Returns the comparison brand details that the client keeps an eye on. + +> Endpoint: versus_get_comparisons + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "comparisons": [ + { + "otherBrandName": null, + "clientRef": "68CgvyEYhGlLcAlDFdol", + "brandName": "Jumia" + }, + { + "otherBrandName": "", + "clientRef": "68CgvyEYhGlLcAlDFdol", + "brandName": "Konga" + } + ] +} +``` + +## Get DocRef + +Returns the client reference associated with a logged in user. + +> Endpoint: versus_get_docref + +> Payload + +``` javascript +{ + "email": "deji.a.ibrahim@gmail.com" +} +``` + +> Response + +``` javascript +{ + "members": [ + { + "email": "deji.a.ibrahim@gmail.com", + "canEdit": false, + "clientRef": "nqaXKB0SzWN6xh7RVyzl" + }, + { + "email": "deji.a.ibrahim@gmail.com", + "is_admin": true, + "clientRef": "nqaXKB0SzWN6xh7RVyzl" + }, + { + "email": "deji.a.ibrahim@gmail.com", + "clientRef": "nqaXKB0SzWN6xh7RVyzl", + "canEdit": false + } + ] +} +``` + +## Get Members + +Returns the list of users associated with a client account. + +> Endpoint: versus_get_members + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "members": [ + { + "clientRef": "68CgvyEYhGlLcAlDFdol", + "email": "kemdi@enterfive.com", + "is_admin": true + }, + { + "clientRef": "68CgvyEYhGlLcAlDFdol", + "canEdit": true, + "accepted": true, + "email": "kemdi@voteorquench.org" + }, + { + "email": "kemdi.ebi@gmail.com", + "clientRef": "68CgvyEYhGlLcAlDFdol", + "canEdit": true + } + ] +} +``` + +## Get Questions + +Get a list of questions under a campaign + +> Endpoint: versus_get_questions + +> Payload + +``` javascript +{ + "docRef": "WXGj5wfVS6DKpyecChYm" +} +``` + +> Response + +``` javascript +{ + "questions": [ + { + "options": "Yes, No", + "question": "Are you a scout?", + "docRef": "kVjTjvEEwk18sLH5RmZX" + } + ] +} +``` + +## Get Responses + +Get all the responses that have been provided to a question. + +> Endpoint: versus_get_responses + +> Payload + +``` javascript +{ + "cRef": "WXGj5wfVS6DKpyecChYm", + "qRef": "kVjTjvEEwk18sLH5RmZX" +} +``` + +> Response + +``` javascript +{ + "responses": [ + { + "value": "Yes", + "docRef": "4XhTtoWg0Yg7q4PSVXOU" + } + ] +} +``` + +## Update Client + +Complete the onboarding process for a client. + +> Endpoint: versus_update_client + +> Payload + +``` javascript +{ + "docRef": "sz4rWLgN7yt0PU3frmjX", + "alertOptions": { + "criticalMentions": true, + "sentimentReports": "daily" + }, + "brandName": "My brand", + "comparisonBrands": [ + { + "brandName": "1st Brand", + "otherBrandName": "1st other brand" + }, + { + "brandName": "2nd Brand", + "otherBrandName": "2nd other brand" + }, + { + "brandName": "3rd brand", + "otherBrandName": "3rd other brand" + } + ], + "email": "deji.a.ibrahim@gmail.com", + "facebook": "facebook", + "filterProfanity": true, + "firstName": "Deji", + "lastName": "Ibrahim", + "officeAddress": "Victoria Island", + "organizationName": "Enterfive", + "otherBrandNames": "My other brand", + "password": "1234abc", + "responseEmails": "abc@e5.com, def@e5.com", + "sentimentReports": "weekly", + "teamMembers": [ + { + "email": "robert@enterfive.com", + "canEdit": true + }, + { + "email": "kemdi@enterfive.com", + "canEdit": true + }, + { + "email": "anyone@enterfive.com", + "canEdit": false + } + ], + "topics": "Pricing, experience", + "twitterHandle": "twitter", + "instagramHandle":"@2019Oby" +} +``` + +> Response + +``` javascript +{ + "docRef": "dZU51YTPmB2qqA030JA4" +} +``` \ No newline at end of file diff --git a/Dashboard.md b/Dashboard.md new file mode 100644 index 0000000..8dbb589 --- /dev/null +++ b/Dashboard.md @@ -0,0 +1,1799 @@ +# Dashboard + +Endpoints responsible for the charts and components that render on the Versus dashboard. + +## All Time Detail + +> Endpoint: versus_dashboard_all_time_detail + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "socialMedia": [ + { + "type": "bar", + "x": [ + 19, + 12, + 35 + ], + "y": [ + "Twitter", + "Facebook", + "Telegram" + ], + "orientation": "h" + } + ], + "news": [ + { + "type": "bar", + "x": [ + 3, + 5, + 1, + 2 + ], + "y": [ + "CNN", + "Business Times", + "Time Magazine", + "Fortune" + ], + "orientation": "h" + } + ], + "other": [ + { + "type": "bar", + "x": [ + 200, + 50, + 35 + ], + "y": [ + "Nairaland", + "Y Naija", + "Guardian Newspapers" + ], + "orientation": "h" + } + ] +} +``` + +## All Time Summary + +> Endpoint: versus_dashboard_all_time_summary + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "data": [ + { + "type": "bar", + "x": [ + 5, + 2, + 1 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "orientation": "h" + } + ], + "total": 8 +} +``` + +## Channel Sentiments + +> Endpoint: versus_dashboard_channel_sentiments + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +[ + { + "x": [ + 14, + 23, + 11 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "name": "Positive", + "type": "bar", + "orientation": "h" + }, + { + "x": [ + 0, + 0, + 0 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "name": "neutral", + "type": "bar", + "orientation": "h" + }, + { + "x": [ + 18, + 29, + 25 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "name": "Negative", + "type": "bar", + "orientation": "h" + } +] +``` + +## Compare Average + +Compare the average (monthly) of mentions across channels for up to three clients + +> Endpoint: versus_dashboard_compare_average + +> Payload + +``` javascript +{ + "clients": [ + { + "name": "Client 1", + "id": "68CgvyEYhGlLcAlDFdol" + }, + { + "name": "Client 2", + "id": "mvPKqA09G4Fm09RMxs4a" + }, + { + "name": "Client 3", + "id": "nqaXKB0SzWN6xh7RVyzl" + } + ] +} +``` + +> Response + +``` javascript +[ + { + "type": "bar", + "x": [ + 103, + 165, + 337 + ], + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "orientation": "h", + "marker": { + "color": [ + "#9775fa", + "#4dabf7", + "#38d9a9" + ] + } + } +] +``` + +## Compare Day + +Compare the number of mentions (past 24 hours) across channels for up to three clients + +> Endpoint: versus_dashboard_compare_day + +> Payload + +``` javascript +{ + "clients": [ + { + "name": "Client 1", + "id": "68CgvyEYhGlLcAlDFdol" + }, + { + "name": "Client 2", + "id": "mvPKqA09G4Fm09RMxs4a" + }, + { + "name": "Client 3", + "id": "nqaXKB0SzWN6xh7RVyzl" + } + ] +} +``` + +> Response + +``` javascript +[ + { + "type": "bar", + "x": [ + 103, + 165, + 337 + ], + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "orientation": "h", + "marker": { + "color": [ + "#9775fa", + "#4dabf7", + "#38d9a9" + ] + } + } +] +``` + +## Compare Month + +Compare the number of mentions in a month across channels for up to three clients + +> Endpoint: versus_dashboard_compare_month + +> Payload + +``` javascript +{ + "clients": [ + { + "name": "Client 1", + "id": "68CgvyEYhGlLcAlDFdol" + }, + { + "name": "Client 2", + "id": "mvPKqA09G4Fm09RMxs4a" + }, + { + "name": "Client 3", + "id": "nqaXKB0SzWN6xh7RVyzl" + } + ] +} +``` + +> Response + +``` javascript +[ + { + "type": "bar", + "x": [ + 103, + 165, + 337 + ], + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "orientation": "h", + "marker": { + "color": [ + "#9775fa", + "#4dabf7", + "#38d9a9" + ] + } + } +] +``` + +## Compare News + +Compare sentiment across news sources for clients + +> Endpoint: versus_dashboard_compare_news + +> Payload + +``` javascript +{ + "clients": [ + { + "name": "Client 1", + "id": "68CgvyEYhGlLcAlDFdol" + }, + { + "name": "Client 2", + "id": "mvPKqA09G4Fm09RMxs4a" + }, + { + "name": "Client 3", + "id": "nqaXKB0SzWN6xh7RVyzl" + } + ] +} +``` + +> Response + +``` javascript +[ + { + "type": "bar", + "x": [ + 100, + 100, + 100 + ], + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "orientation": "h", + "marker": { + "color": "#40C057" + }, + "name": "Positive" + }, + { + "showlegend": true, + "name": "Neutral", + "marker": { + "color": "#FAB005" + }, + "hoverinfo": "y", + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "x": [ + 0, + 0, + 0 + ], + "type": "bar", + "orientation": "h" + }, + { + "name": "Negative", + "marker": { + "color": "#FA5252" + }, + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "x": [ + 0, + 0, + 0 + ], + "type": "bar", + "orientation": "h" + } +] +``` + +## Compare Other + +Compare sentiment across other news sources for clients + +> Endpoint: versus_dashboard_compare_other + +> Payload + +``` javascript +{ + "clients": [ + { + "name": "Client 1", + "id": "68CgvyEYhGlLcAlDFdol" + }, + { + "name": "Client 2", + "id": "mvPKqA09G4Fm09RMxs4a" + }, + { + "name": "Client 3", + "id": "nqaXKB0SzWN6xh7RVyzl" + } + ] +} +``` + +> Response + +``` javascript +[ + { + "type": "bar", + "x": [ + 100, + 100, + 100 + ], + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "orientation": "h", + "marker": { + "color": "#40C057" + }, + "name": "Positive" + }, + { + "showlegend": true, + "name": "Neutral", + "marker": { + "color": "#FAB005" + }, + "hoverinfo": "y", + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "x": [ + 0, + 0, + 0 + ], + "type": "bar", + "orientation": "h" + }, + { + "name": "Negative", + "marker": { + "color": "#FA5252" + }, + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "x": [ + 0, + 0, + 0 + ], + "type": "bar", + "orientation": "h" + } +] +``` + +## Compare Pie + +Compare the number of mentions in a month across channels for up to three clients as a Pie Chart + +> Endpoint: versus_dashboard_compare_pie + +> Payload + +``` javascript +{ + "clients": [ + { + "name": "Client 1", + "id": "68CgvyEYhGlLcAlDFdol" + }, + { + "name": "Client 2", + "id": "mvPKqA09G4Fm09RMxs4a" + }, + { + "name": "Client 3", + "id": "nqaXKB0SzWN6xh7RVyzl" + } + ] +} +``` + +> Response + +``` javascript +[ + { + "type": "bar", + "x": [ + 103, + 165, + 337 + ], + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "orientation": "h", + "marker": { + "color": [ + "#9775fa", + "#4dabf7", + "#38d9a9" + ] + } + } +] +``` + +## Compare Social + +Compare sentiment across social channels for clients + +> Endpoint: versus_dashboard_compare_social + +> Payload + +``` javascript +{ + "clients": [ + { + "name": "Client 1", + "id": "68CgvyEYhGlLcAlDFdol" + }, + { + "name": "Client 2", + "id": "mvPKqA09G4Fm09RMxs4a" + }, + { + "name": "Client 3", + "id": "nqaXKB0SzWN6xh7RVyzl" + } + ] +} +``` + +> Response + +``` javascript +[ + { + "type": "bar", + "x": [ + 100, + 100, + 100 + ], + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "orientation": "h", + "marker": { + "color": "#40C057" + }, + "name": "Positive" + }, + { + "showlegend": true, + "name": "Neutral", + "marker": { + "color": "#FAB005" + }, + "hoverinfo": "y", + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "x": [ + 0, + 0, + 0 + ], + "type": "bar", + "orientation": "h" + }, + { + "name": "Negative", + "marker": { + "color": "#FA5252" + }, + "y": [ + "Client 1", + "Client 2", + "Client 3" + ], + "x": [ + 0, + 0, + 0 + ], + "type": "bar", + "orientation": "h" + } +] +``` + +## Compare Month Sentiment + +Compare weekly positive sentiment count over a period of one month for clients + +> Endpoint: versus_dashboard_compare_month_sentiments + +> Payload + +``` javascript +{ + "clients": [ + { + "name": "Client 1", + "id": "68CgvyEYhGlLcAlDFdol" + }, + { + "name": "Client 2", + "id": "mvPKqA09G4Fm09RMxs4a" + }, + { + "name": "Client 3", + "id": "nqaXKB0SzWN6xh7RVyzl" + } + ] +} +``` + +> Response + +``` javascript +[ + { + "x": [ + "2019-01-14", + "2019-01-15", + "2019-01-16", + "2019-01-17", + "2019-01-18", + "2019-01-19", + "2019-01-20" + ], + "y": [ + 0, + 0, + 0, + 100, + 100, + 100, + 0 + ], + "marker": { + "color": "rgb(151, 117, 250)" + }, + "line": { + "color": "rgb(151, 117, 250)", + "shape": "spline" + }, + "mode": "markers+lines", + "name": "Client 1" + }, + { + "x": [ + "2019-01-14", + "2019-01-15", + "2019-01-16", + "2019-01-17", + "2019-01-18", + "2019-01-19", + "2019-01-20" + ], + "y": [ + 0, + 100, + 100, + 100, + 100, + 100, + 0 + ], + "marker": { + "color": "rgb(77, 171, 247)" + }, + "line": { + "color": "rgb(77, 171, 247)", + "shape": "spline" + }, + "mode": "markers+lines", + "name": "Client 2" + }, + { + "x": [ + "2019-01-14", + "2019-01-15", + "2019-01-16", + "2019-01-17", + "2019-01-18", + "2019-01-19", + "2019-01-20" + ], + "y": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "line": { + "color": "rgb(56, 217, 169)", + "shape": "spline" + }, + "marker": { + "color": "rgb(56, 217, 169)" + }, + "mode": "markers+lines", + "name": "Client 3" + } +] +``` + +## Compare Week Sentiment + +Compare weekly positive sentiment count over a period of one week for clients + +> Endpoint: versus_dashboard_compare_week_sentiments + +> Payload + +``` javascript +{ + "clients": [ + { + "name": "Client 1", + "id": "68CgvyEYhGlLcAlDFdol" + }, + { + "name": "Client 2", + "id": "mvPKqA09G4Fm09RMxs4a" + }, + { + "name": "Client 3", + "id": "nqaXKB0SzWN6xh7RVyzl" + } + ] +} +``` + +> Response + +``` javascript +[ + { + "x": [ + "2019-01-14", + "2019-01-15", + "2019-01-16", + "2019-01-17", + "2019-01-18", + "2019-01-19", + "2019-01-20" + ], + "y": [ + 0, + 0, + 0, + 100, + 100, + 100, + 0 + ], + "marker": { + "color": "rgb(151, 117, 250)" + }, + "line": { + "color": "rgb(151, 117, 250)", + "shape": "spline" + }, + "mode": "markers+lines", + "name": "Client 1" + }, + { + "x": [ + "2019-01-14", + "2019-01-15", + "2019-01-16", + "2019-01-17", + "2019-01-18", + "2019-01-19", + "2019-01-20" + ], + "y": [ + 0, + 100, + 100, + 100, + 100, + 100, + 0 + ], + "marker": { + "color": "rgb(77, 171, 247)" + }, + "line": { + "color": "rgb(77, 171, 247)", + "shape": "spline" + }, + "mode": "markers+lines", + "name": "Client 2" + }, + { + "x": [ + "2019-01-14", + "2019-01-15", + "2019-01-16", + "2019-01-17", + "2019-01-18", + "2019-01-19", + "2019-01-20" + ], + "y": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "line": { + "color": "rgb(56, 217, 169)", + "shape": "spline" + }, + "marker": { + "color": "rgb(56, 217, 169)" + }, + "mode": "markers+lines", + "name": "Client 3" + } +] +``` + +## Month Detail + +> Endpoint: versus_dashboard_month_detail + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "socialMedia": [ + { + "type": "bar", + "x": [ + 19, + 12, + 35 + ], + "y": [ + "Twitter", + "Facebook", + "Telegram" + ], + "orientation": "h" + } + ], + "news": [ + { + "type": "bar", + "x": [ + 3, + 5, + 1, + 2 + ], + "y": [ + "CNN", + "Business Times", + "Time Magazine", + "Fortune" + ], + "orientation": "h" + } + ], + "other": [ + { + "type": "bar", + "x": [ + 200, + 50, + 35 + ], + "y": [ + "Nairaland", + "Y Naija", + "Guardian Newspapers" + ], + "orientation": "h" + } + ] +} +``` + +## Month Sentiments + +> Endpoint: versus_dashboard_month_sentiments + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +[ + { + "x": [ + "Sep 30", + "Oct 01", + "Oct 02", + "Oct 03", + "Oct 04", + "Oct 05", + "Oct 06", + "Oct 07", + "Oct 08", + "Oct 09", + "Oct 10", + "Oct 11", + "Oct 12", + "Oct 13", + "Oct 14", + "Oct 15", + "Oct 16", + "Oct 17", + "Oct 18", + "Oct 19", + "Oct 20", + "Oct 21", + "Oct 22", + "Oct 23", + "Oct 24", + "Oct 25", + "Oct 26", + "Oct 27", + "Oct 28", + "Oct 29" + ], + "y": [ + 1111, + 688, + 4000, + 1105, + 599, + 3200, + 2195, + 1900, + 2650, + 3718, + 613, + 552, + 323, + 1466, + 1577, + 1777, + 955, + 2131, + 1262, + 3280, + 1229, + 2324, + 1625, + 1886, + 2785, + 3191, + 2334, + 1255, + 3666, + 918 + ], + "mode": "lines", + "line": { + "shape": "spline" + }, + "name": "Social Media" + }, + { + "x": [ + "Sep 30", + "Oct 01", + "Oct 02", + "Oct 03", + "Oct 04", + "Oct 05", + "Oct 06", + "Oct 07", + "Oct 08", + "Oct 09", + "Oct 10", + "Oct 11", + "Oct 12", + "Oct 13", + "Oct 14", + "Oct 15", + "Oct 16", + "Oct 17", + "Oct 18", + "Oct 19", + "Oct 20", + "Oct 21", + "Oct 22", + "Oct 23", + "Oct 24", + "Oct 25", + "Oct 26", + "Oct 27", + "Oct 28", + "Oct 29" + ], + "y": [ + 11, + 6, + 15, + 20, + 22, + 24, + 25, + 6, + 5, + 11, + 9, + 20, + 18, + 13, + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 22, + 24, + 25, + 6, + 5, + 11, + 9, + 20, + 18 + ], + "mode": "lines", + "line": { + "shape": "spline" + }, + "name": "News" + }, + { + "x": [ + "Sep 30", + "Oct 01", + "Oct 02", + "Oct 03", + "Oct 04", + "Oct 05", + "Oct 06", + "Oct 07", + "Oct 08", + "Oct 09", + "Oct 10", + "Oct 11", + "Oct 12", + "Oct 13", + "Oct 14", + "Oct 15", + "Oct 16", + "Oct 17", + "Oct 18", + "Oct 19", + "Oct 20", + "Oct 21", + "Oct 22", + "Oct 23", + "Oct 24", + "Oct 25", + "Oct 26", + "Oct 27", + "Oct 28", + "Oct 29" + ], + "y": [ + 111, + 68, + 566, + 110, + 99, + 200, + 195, + 900, + 250, + 718, + 613, + 552, + 323, + 466, + 577, + 777, + 955, + 131, + 262, + 280, + 229, + 2324, + 625, + 886, + 785, + 191, + 2334, + 255, + 666, + 918 + ], + "mode": "lines", + "line": { + "shape": "spline" + }, + "name": "Others" + } +] +``` + +## Month Summary + +> Endpoint: versus_dashboard_month_summary + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "data": [ + { + "type": "bar", + "x": [ + 5, + 2, + 1 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "orientation": "h" + } + ], + "total": 8 +} +``` + +## News Mentions + +> Endpoint: versus_dashboard_news_mentions + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol", + "when": "2019-01-10" +} +``` + +> Response + +``` javascript +{ + "mentions": 14, + "data": [ + { + "sentiment": -1, + "outlet": "Guardian", + "views": 890, + "title": "Lorem dolor ipsum", + "content": "Mauris lobortis eleifend tempor. Etiam et imperdiet sem. Aliquam eu mattis purus. Vivamus et molestie nunc, ultricies viverra justo. Praesent lacinia in quam sit amet blandit. Vestibulum placerat, enim at cursus dignissim, nisl risus ultricies dolor, condimentum finibus justo dolor at purus. Aenean in fringilla dolor, vitae hendrerit lectus. Etiam gravida dolor eu auctor faucibus. Nulla eu orci laoreet sapien vulputate semper non a nunc. Nam condimentum lorem mattis tellus efficitur vulputate. Aliquam erat volutpat. Vivamus ac elit eu nibh gravida egestas. Curabitur sed ligula arcu. Aliquam hendrerit enim id elementum faucibus. Duis placerat at sapien eget tincidunt.", + "url": "http://www.guardian.com" + }, + { + "sentiment": 1, + "outlet": "Time Magazine", + "views": 221, + "title": "Sit amet dolor", + "content": "Nullam faucibus luctus ultricies. Cras ac faucibus arcu. Donec varius facilisis nisi. Quisque posuere libero nec consectetur ornare. Cras ullamcorper euismod tellus, posuere pharetra est blandit eu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aenean justo lacus, maximus nec egestas vel, semper sit amet neque. Aenean efficitur tincidunt arcu, vel tincidunt nibh sodales id. Suspendisse potenti. Phasellus sagittis consectetur placerat. Vestibulum nec tempor est.", + "url": "http://www.time.com" + }, + { + "sentiment": 1, + "platform": "Newsweek", + "views": 832, + "title": "ut orci vel finibus", + "content": "Nullam venenatis ut orci vel finibus. Phasellus efficitur dui risus, at ultricies augue semper et. Donec sed rutrum massa, a dignissim urna. Nulla viverra, sapien et blandit laoreet, urna diam aliquam velit, vel interdum nisl libero a odio. Donec ut interdum risus. Vestibulum tempus elit eget urna pretium tincidunt. Integer at convallis ipsum.", + "url": "http://www.newsweek.com" + }, + { + "sentiment": -1, + "platform": "Time Magazine", + "views": 930, + "title": "In efficitur erat", + "content": "In efficitur erat egestas magna finibus, nec lacinia velit sollicitudin. Phasellus id mattis dolor, in hendrerit elit. Phasellus at tortor placerat, maximus elit sit amet, sodales velit. Mauris ligula leo, posuere eu risus ut, hendrerit consequat sapien. Mauris convallis tortor ut est porta sagittis. Mauris sed mi purus. Nulla in fermentum massa, nec vestibulum eros.", + "url": "http://www.time.com" + }, + { + "sentiment": 1, + "platform": "Time Magazine", + "views": 384, + "title": "Duis molestie dignissim mauris", + "content": "Nam a est mi. Duis molestie dignissim mauris, in scelerisque quam eleifend at. Fusce consequat, quam et tincidunt tincidunt, tellus leo consectetur diam, gravida vestibulum orci nisl vel nulla. Etiam ac elit dignissim ex accumsan bibendum et eu lorem. Ut in vulputate sem, vel finibus nulla. Suspendisse semper sit amet sem id tempus. Praesent vulputate mattis nisi, ut interdum nulla suscipit eu. Suspendisse potenti.", + "url": "http://www.time.com" + } + ] +} +``` + +## Other Mentions + +> Endpoint: versus_dashboard_other_mentions + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol", + "when": "2019-01-10" +} +``` + +> Response + +``` javascript +{ + "mentions": 14, + "data": [ + { + "sentiment": -1, + "outlet": "Punch", + "views": 890, + "title": "Lorem dolor ipsum", + "content": "Mauris lobortis eleifend tempor. Etiam et imperdiet sem. Aliquam eu mattis purus. Vivamus et molestie nunc, ultricies viverra justo. Praesent lacinia in quam sit amet blandit. Vestibulum placerat, enim at cursus dignissim, nisl risus ultricies dolor, condimentum finibus justo dolor at purus. Aenean in fringilla dolor, vitae hendrerit lectus. Etiam gravida dolor eu auctor faucibus. Nulla eu orci laoreet sapien vulputate semper non a nunc. Nam condimentum lorem mattis tellus efficitur vulputate. Aliquam erat volutpat. Vivamus ac elit eu nibh gravida egestas. Curabitur sed ligula arcu. Aliquam hendrerit enim id elementum faucibus. Duis placerat at sapien eget tincidunt.", + "url": "http://www.punch.com" + }, + { + "sentiment": 1, + "outlet": "Yello Magazine", + "views": 221, + "title": "Sit amet dolor", + "content": "Nullam faucibus luctus ultricies. Cras ac faucibus arcu. Donec varius facilisis nisi. Quisque posuere libero nec consectetur ornare. Cras ullamcorper euismod tellus, posuere pharetra est blandit eu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aenean justo lacus, maximus nec egestas vel, semper sit amet neque. Aenean efficitur tincidunt arcu, vel tincidunt nibh sodales id. Suspendisse potenti. Phasellus sagittis consectetur placerat. Vestibulum nec tempor est.", + "url": "http://www.yello.com" + }, + { + "sentiment": 1, + "platform": "Naija", + "views": 832, + "title": "ut orci vel finibus", + "content": "Nullam venenatis ut orci vel finibus. Phasellus efficitur dui risus, at ultricies augue semper et. Donec sed rutrum massa, a dignissim urna. Nulla viverra, sapien et blandit laoreet, urna diam aliquam velit, vel interdum nisl libero a odio. Donec ut interdum risus. Vestibulum tempus elit eget urna pretium tincidunt. Integer at convallis ipsum.", + "url": "http://www.naija.com" + }, + { + "sentiment": -1, + "platform": "Other Magazine", + "views": 930, + "title": "In efficitur erat", + "content": "In efficitur erat egestas magna finibus, nec lacinia velit sollicitudin. Phasellus id mattis dolor, in hendrerit elit. Phasellus at tortor placerat, maximus elit sit amet, sodales velit. Mauris ligula leo, posuere eu risus ut, hendrerit consequat sapien. Mauris convallis tortor ut est porta sagittis. Mauris sed mi purus. Nulla in fermentum massa, nec vestibulum eros.", + "url": "http://www.other.com" + }, + { + "sentiment": 1, + "platform": "Other Magazine", + "views": 384, + "title": "Duis molestie dignissim mauris", + "content": "Nam a est mi. Duis molestie dignissim mauris, in scelerisque quam eleifend at. Fusce consequat, quam et tincidunt tincidunt, tellus leo consectetur diam, gravida vestibulum orci nisl vel nulla. Etiam ac elit dignissim ex accumsan bibendum et eu lorem. Ut in vulputate sem, vel finibus nulla. Suspendisse semper sit amet sem id tempus. Praesent vulputate mattis nisi, ut interdum nulla suscipit eu. Suspendisse potenti.", + "url": "http://www.other.com" + } + ] +} +``` + +## Social Mentions + +> Endpoint: versus_dashboard_social_mentions + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol", + "when": "2019-01-10" +} +``` + +> Response + +``` javascript +{ + "mentions": 25, + "data": [ + { + "sentiment": -1, + "content": "Mauris lobortis eleifend tempor. Etiam et imperdiet sem. Aliquam eu mattis purus. Vivamus et molestie nunc, ultricies viverra justo. Praesent lacinia in quam sit amet blandit. Vestibulum placerat, enim at cursus dignissim, nisl risus ultricies dolor, condimentum finibus justo dolor at purus. Aenean in fringilla dolor, vitae hendrerit lectus. Etiam gravida dolor eu auctor faucibus. Nulla eu orci laoreet sapien vulputate semper non a nunc. Nam condimentum lorem mattis tellus efficitur vulputate. Aliquam erat volutpat. Vivamus ac elit eu nibh gravida egestas. Curabitur sed ligula arcu. Aliquam hendrerit enim id elementum faucibus. Duis placerat at sapien eget tincidunt.", + "url": "http://www.fb.me/asdf", + "platform": "facebook", + "handle": "asdf", + "followers": 890 + }, + { + "sentiment": 1, + "content": "Nullam faucibus luctus ultricies. Cras ac faucibus arcu. Donec varius facilisis nisi. Quisque posuere libero nec consectetur ornare. Cras ullamcorper euismod tellus, posuere pharetra est blandit eu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aenean justo lacus, maximus nec egestas vel, semper sit amet neque. Aenean efficitur tincidunt arcu, vel tincidunt nibh sodales id. Suspendisse potenti. Phasellus sagittis consectetur placerat. Vestibulum nec tempor est.", + "url": "http://www.twitter.com", + "platform": "twitter", + "handle": "@ien", + "followers": 221 + }, + { + "sentiment": 1, + "platform": "twitter", + "content": "Nullam venenatis ut orci vel finibus. Phasellus efficitur dui risus, at ultricies augue semper et. Donec sed rutrum massa, a dignissim urna. Nulla viverra, sapien et blandit laoreet, urna diam aliquam velit, vel interdum nisl libero a odio. Donec ut interdum risus. Vestibulum tempus elit eget urna pretium tincidunt. Integer at convallis ipsum.", + "url": "http://www.twitter.com", + "handle": "@doe", + "followers": 832 + }, + { + "sentiment": -1, + "platform": "twitter", + "content": "In efficitur erat egestas magna finibus, nec lacinia velit sollicitudin. Phasellus id mattis dolor, in hendrerit elit. Phasellus at tortor placerat, maximus elit sit amet, sodales velit. Mauris ligula leo, posuere eu risus ut, hendrerit consequat sapien. Mauris convallis tortor ut est porta sagittis. Mauris sed mi purus. Nulla in fermentum massa, nec vestibulum eros.", + "url": "http://www.twitter.com", + "handle": "@eod_", + "followers": 930 + }, + { + "sentiment": 1, + "platform": "facebook", + "content": "Nam a est mi. Duis molestie dignissim mauris, in scelerisque quam eleifend at. Fusce consequat, quam et tincidunt tincidunt, tellus leo consectetur diam, gravida vestibulum orci nisl vel nulla. Etiam ac elit dignissim ex accumsan bibendum et eu lorem. Ut in vulputate sem, vel finibus nulla. Suspendisse semper sit amet sem id tempus. Praesent vulputate mattis nisi, ut interdum nulla suscipit eu. Suspendisse potenti.", + "url": "http://www.fb.me/_ee__", + "handle": "_ee__", + "followers": 384 + } + ] +} +``` + +## Today Detail + +> Endpoint: versus_dashboard_today_detail + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "socialMedia": [ + { + "type": "bar", + "x": [ + 19, + 12, + 35 + ], + "y": [ + "Twitter", + "Facebook", + "Telegram" + ], + "orientation": "h" + } + ], + "news": [ + { + "type": "bar", + "x": [ + 3, + 5, + 1, + 2 + ], + "y": [ + "CNN", + "Business Times", + "Time Magazine", + "Fortune" + ], + "orientation": "h" + } + ], + "other": [ + { + "type": "bar", + "x": [ + 200, + 50, + 35 + ], + "y": [ + "Nairaland", + "Y Naija", + "Guardian Newspapers" + ], + "orientation": "h" + } + ] +} +``` + +## Today Summary + +> Endpoint: versus_dashboard_today_summary + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "data": [ + { + "type": "bar", + "x": [ + 5, + 2, + 1 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "orientation": "h" + } + ], + "total": 8 +} +``` + +## Topic Sentiments + +> Endpoint: versus_dashboard_topic_sentiments + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +[ + { + "x": [ + 14, + 23, + 11 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "name": "Positive", + "type": "bar", + "orientation": "h" + }, + { + "x": [ + 0, + 0, + 0 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "name": "neutral", + "type": "bar", + "orientation": "h" + }, + { + "x": [ + 18, + 29, + 25 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "name": "Negative", + "type": "bar", + "orientation": "h" + } +] +``` + +## Week Detail + +> Endpoint: versus_dashboard_week_detail + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "socialMedia": [ + { + "type": "bar", + "x": [ + 19, + 12, + 35 + ], + "y": [ + "Twitter", + "Facebook", + "Telegram" + ], + "orientation": "h" + } + ], + "news": [ + { + "type": "bar", + "x": [ + 3, + 5, + 1, + 2 + ], + "y": [ + "CNN", + "Business Times", + "Time Magazine", + "Fortune" + ], + "orientation": "h" + } + ], + "other": [ + { + "type": "bar", + "x": [ + 200, + 50, + 35 + ], + "y": [ + "Nairaland", + "Y Naija", + "Guardian Newspapers" + ], + "orientation": "h" + } + ] +} +``` + +## Week Sentiments + +> Endpoint: versus_dashboard_week_sentiments + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +[ + { + "x": [ + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + "Sunday" + ], + "y": [ + 11, + 6, + 15, + 20, + 22, + 24, + 25 + ], + "mode": "lines", + "line": { + "shape": "spline" + }, + "name": "Social Media" + }, + { + "x": [ + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + "Sunday" + ], + "y": [ + 16, + 5, + 11, + 9, + 20, + 18, + 13 + ], + "mode": "lines", + "line": { + "shape": "spline" + }, + "name": "News" + }, + { + "x": [ + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + "Sunday" + ], + "y": [ + 2, + 3, + 4, + 5, + 7, + 9, + 11 + ], + "mode": "lines", + "line": { + "shape": "spline" + }, + "name": "Others" + } +] +``` + +## Week Summary + +> Endpoint: versus_dashboard_week_summary + +> Payload + +``` javascript +{ + "docRef": "68CgvyEYhGlLcAlDFdol" +} +``` + +> Response + +``` javascript +{ + "data": [ + { + "type": "bar", + "x": [ + 5, + 2, + 1 + ], + "y": [ + "Social Media", + "News", + "Other" + ], + "orientation": "h" + } + ], + "total": 8 +} +``` + diff --git a/Email.md b/Email.md new file mode 100644 index 0000000..9bbc6d5 --- /dev/null +++ b/Email.md @@ -0,0 +1,229 @@ +# Email + +This has endpoints for sending out emails. + +## Custom Alerts: +Notify an admin that custom alerts have been set for their account. The payload has the following fields. + +| Field | Type | Description | +|------------------|--------|-----------------------------------------------------------| +| recipient | string | the email to send the mail to | +| firstName | string | the name of the email recipient | +| organizationName | string | the name of the organization that the recipient works for | +| alertFrequency | string | one or more periods, separated by a comma | + +> Endpoint: email_custom_alerts_set + +> Payload + +``` javascript +{ + "recipient": "deji.a.ibrahim@gmail.com", + "firstName": "Deji", + "organizationName": "Deji Enterprises", + "alertFrequency": "Daily" +} +``` + +> Response + +``` javascript +{"recipient": "deji.a.ibrahim@gmail.com"} +``` + +## Dashboard Ready: +Notify an admin that the Versus Sentiment dashboard has data for viewing. The payload has the following fields. + +| Field | Type | Description | +|-----------|--------|-------------------------------------| +| recipient | string | the email to send the mail to | +| firstName | string | the name of the email recipient | + +> Endpoint: email_dashboard_ready + +> Payload: + +``` javascript +{ + "recipient": "johnthas@yahoo.com", + "firstName": "Robert" +} +``` + +> Response + +``` javascript +{"recipient": "johnthas@yahoo.com"} +``` + +## Designated Primary Email: +Notify an admin that they have been designated as a primary contact. The payload has the following fields. + +| Field | Type | Description | +|------------------|--------|---------------------------------| +| recipient | string | the email recipient | +| firstName | string | the name of the email recipient | +| organizationName | string | the name of the organization | + +> Endpoint: email_designated_primary + +> Payload + +``` javascript +{ + "recipient": "johnthas@yahoo.com", + "firstName": "Robert", + "organizationName": "Enterfive" +} +``` + +> Response + +``` javascript +{"recipient": "johnthas@yahoo.com"} +``` + +## Designated Team Member: +Notify someone that they have been added as a team member to Versus Sentiment. The payload has the following fields. + +| Field | Type | Description | +|------------------|--------|----------------------------------| +| recipient | string | the email recipient | +| firstName | string | the name of the email recipient | +| organizationName | string | the name of the organization | +| inviteLink | string | the URL that links to onboarding | + +> Endpoint: email_designated_team_member + +> Payload + +``` javascript +{ + "recipient": "kemdi@enterfive.com", + "firstName": "kemdi", + "organizationName": "Enterfive", + "inviteLink": "https://versus-dev-212614.appspot.com/create-profile?ref=undefined&email=kemdi@enterfive.com" +} +``` + +> Response + +``` javascript +{"recipient": "kemdi@enterfive.com"} +``` + +## Request a Demo: +Let a potential user request a demo. The payload has the following fields. + +| Field | Type | Description | +|--------------|--------|-----------------------------------------| +| firstName | string | the first name of the potential user | +| lastName | string | the last name of the potential user | +| email | string | the email address of the potential user | +| organization | string | the name of the organization | +| sector | string | the business sector of the requestor | + +> Endpoint: email_request + +> Payload + +``` javascript +{ + "firstName": "Robert", + "lastName": "John", + "email": "robert@enterfive.com", + "organization": "Enterfive", + "sector": "Information Technology" +} +``` + +> Response + +``` javascript +{"recipient": "kemdi@enterfive.com"} +``` + +## Respond to Article: +Notify a recipient to respond to a social media post. The payload has the following fields. + +| Field | Type | Description | +|------------------|--------|----------------------------------------------| +| firstName | string | the first name of the recipient | +| recipient | string | the email address of the recipient | +| link | string | the URL to the article/post | +| notes | string | a call to action or message to the recipient | +| requestFirstName | string | the name of the person sending the request | + +> Endpoint: email_respond_to_article + +> Payload + +``` javascript +{ + "firstName": "Robert", + "recipient": "robert.thas.john@gmail.com", + "link": "https://twitter.com", + "notes": "I think you should respond to this tweet", + "requestFirstName": "Kemdi" +} +``` + +> Response + +``` javascript +{"recipient": "kemdi@enterfive.com"} +``` + +## Welcome to Versus: +Notify the recipient that their Versus Sentiment account has been created. The payload has the following fields. + +| Field | Type | Description | +|------------|--------|----------------------------------------| +| recipient | string | the email address of the recipient | +| inviteLink | string | the URL from which to begin onboarding | + +> Endpoint: email_welcome_to_versus + +> Payload + +``` javascript +{ + "recipient": "josh@enterfive.com", + "inviteLink": "https://app.versus.ng" +} +``` + +> Response + +``` javascript +{"recipient": "kemdi@enterfive.com"} +``` + +## Your Report: +Dispatch a periodic report. The payload has the following fields. + +| Field | Type | Description | +|----------------|--------|-------------------------------------------------------| +| recipient | string | the email address of the recipient | +| firstName | string | the name of the recipient | +| alertFrequency | string | the report being received (daily, weekly, or monthly) | +| reportLink | string | the URL from which to download reports | + +> Endpoint: email_your_report + +> Payload + +``` javascript +{ + "recipient": "johnthas@yahoo.com", + "alertFrequency": "weekly", + "firstName": "Robert", + "reportLink": "https://app.versus.ng" +} +``` + +> Response + +``` javascript +{"recipient": "kemdi@enterfive.com"} +``` \ No newline at end of file diff --git a/Powertrack.md b/Powertrack.md new file mode 100644 index 0000000..e694568 --- /dev/null +++ b/Powertrack.md @@ -0,0 +1,72 @@ +# PowerTrack + +Endpoints for PowerTrack Rules + + +## Add Rule +This function will take an array of rules and a string containing client reference, adds the rules to PowerTrack with the client reference as tags and returns the id of the rules created. + +| Field | Type | Description | +|------------|--------|--------------------------------------------| +| rules | array | An array of strings with rules to be added | +| client_ref | string | A sstring containing client reference + + +> Endpoint: https://us-central1-versus-dev-212614.cloudfunctions.net/add_powertrack_rule + +> Payload + +``` javascript +{ + "rules": ["keyword", "#hashtag" "key phrase"], + "client_ref": "company" +} +``` + +> Result +``` javascript +{ + "created": true, + "detail": { + "rule": "(keyword OR #hastag OR \"key phrase\")", + "client_ref": "company", + "id": "1272119853105766401" + } +} +``` + +## Remove Rule +This function will take an array of rule ids to be removed, removes the rules from PowerTrack filter and returns a summary of rules deleted. + +| Field | Type | Description | +|------------|--------|--------------------------------------------------| +| rule_ids | array | An array of strings with rules ids to be removed | + + +> Endpoint: https://us-central1-versus-dev-212614.cloudfunctions.net/remove_powertrack_rule + +> Payload + +``` javascript +{ + "rule_ids": ["1272116620828258304"] +} +``` + +> Result +``` javascript +{ + "summary": { + "deleted": 0, + "not_deleted": 1 + }, + "detail": [ + { + "id": "1272116620828258304", + "deleted": false, + "message": "Rule does not exist" + } + ] +} +``` + diff --git a/Profanity.md b/Profanity.md new file mode 100644 index 0000000..c7c3cad --- /dev/null +++ b/Profanity.md @@ -0,0 +1,24 @@ +# Profanity Filter + +This function will take a string and return a HTML formatted string with tags that decorate profane words. The payload has the following parameters. + +| Field | Type | Description | +|-------|--------|-------------------------------------| +| text | string | the field to be formatted into HTML | + + +> Endpoint: versus_profanity_filter + +> Payload + +``` javascript +{ + "text": "What the hell" +} +``` + +> Result +``` html +what the hell +``` + diff --git a/Readme.md b/Readme.md index 0967599..977f3dc 100644 --- a/Readme.md +++ b/Readme.md @@ -1,266 +1,139 @@ -Flatdoc -======= +# Versus API Endpoints -Flatdoc is a small JavaScript file that fetches Markdown files and renders them -as full pages. Essentially, it's the easiest -way to make open source documentation from *Readme* files. +This documentation lists the API endpoints required for engineers on the Versus team to interface with Versus Backend. The API endpoints are generally grouped into the following. - * No server-side components - * No build process needed - * Deployable via GitHub Pages - * Can fetch GitHub Readme files - * Gorgeous default theme (and it's responsive) - * Just create an HTML file and deploy! +* Clients -*Current version: [v0.9.0][dist]* +* Dashboard -[![Build Status](https://travis-ci.org/rstacruz/flatdoc.svg?branch=gh-pages)](https://travis-ci.org/rstacruz/flatdoc) +* Email Templates -Getting started ---------------- +* Profanity Filter -Create a file based on the template, which has a bare DOM, link to the -scripts, and a link to a theme. It will look something like this (not exact). -For GitHub projects, simply place this file in your [GitHub pages] branch and -you're all good to go. +* Scouts -*In short: just download this file and upload it somewhere.* +*Current version: [v0.1.0][dist]* -The main JS and CSS files are also available in [npm] and [bower]. -[Default theme template >][template] +# Clients -[Blank template >][blank] +This has functions for managing clients. -[bower]: http://bower.io/search/?q=flatdoc -[npm]: https://www.npmjs.org/package/flatdoc +* Add Campaign -### Via GitHub +* Add Comparison -To fetch a Github Repository's readme file, use the `Flatdoc.github` fetcher. -This will fetch the Readme file of the repository's default branch. +* Add Member -``` javascript -Flatdoc.run({ - fetcher: Flatdoc.github('USER/REPO') -}); -``` +* Add Question -You may also fetch another file other than the Readme file, just specify it as -the 2nd parameter. +* Create Client -``` javascript -Flatdoc.run({ - fetcher: Flatdoc.github('USER/REPO', 'Changelog.md') -}); -``` +* Create Member -After you've done this, you probably want to deploy it via [GitHub Pages]. +* Delete Comparison -[GitHub Pages guide >][GitHub Pages] +* Delete Member -### Via a file +* Edit Client -You may also fetch a file. In this example, this fetches the file `Readme.md` in -the same folder as the HTML file. +* Generate Report -``` javascript -Flatdoc.run({ - fetcher: Flatdoc.file('Readme.md') -}); -``` +* Get Campaigns -You may actually supply any URL here. It will be fetched via AJAX. This is -useful for local testing. +* Get Client -``` javascript -Flatdoc.run({ - fetcher: Flatdoc.file('http://yoursite.com/Readme.md') -}); -``` +* Get Comparisons -How it works ------------- +* Get DocRef -Flatdoc is a hosted `.js` file (along with a theme and its assets) that you can -add into any page hosted anywhere. +* Get Members -#### All client-side +* Get Questions -There are no build scripts or 3rd-party services involved. Everything is done in -the browser. Worried about performance? Oh, It's pretty fast. +* Get Responses -Flatdoc utilizes the [GitHub API] to fetch your project's Readme files. You may -also configure it to fetch any arbitrary URL via AJAX. +* Update Client -#### Lightning-fast parsing +# Dashboard -Next, it uses [marked], an extremely fast Markdown parser that has support for -GitHub flavored Markdown. +This has functions for retrieving mentions -Flatdoc then simply renders *menu* and *content* DOM elements to your HTML -document. Flatdoc also comes with a default theme to style your page for you, or -you may opt to create your own styles. +* Today Summary: Today's mentions on social media, news, and other sources -Markdown extras ---------------- +* Week Summary: This week's mentions on social media, news, and other sources -Flatdoc offers a few harmless, unobtrusive extras that come in handy in building -documentation sites. +* Month Summary: This month's mentions on social media, news, and other sources -#### Code highlighting +* All Time Summary: Total aggregate on our systems of mentions on social media, news, and other sources -You can use Markdown code fences to make syntax-highlighted text. Simply -surround your text with three backticks. This works in GitHub as well. -See [GitHub Syntax Highlighting][fences] for more info. +* Today Details: Mentions from social media, news, and other sources grouped by source for today - ``` html - Hola, mundo - ``` +* Week Details: Mentions from social media, news, and other sources grouped by source for the past week -#### Blockquotes +* Today Details: Mentions from social media, news, and other sources grouped by source for the past month -Blockquotes show up as side figures. This is useful for providing side -information or non-code examples. +* All Time Details: Mentions from social media, news, and other sources grouped by source for all content on our systems -> Blockquotes are blocks that begin with `>`. +# Email Templates -#### Smart quotes +This has functions for sending out emails -Single quotes, double quotes, and double-hyphens are automatically replaced to -their typographically-accurate equivalent. This, of course, does not apply to -`` and `
` blocks to leave code alone.
+* Custom Alerts: Notify an admin that custom alerts have been set for their account
 
-> "From a certain point onward there is no longer any turning back. That is the
-> point that must be reached."  
-> --Franz Kafka
+* Dashboard Ready: Notify an admin that the Versus Sentiment dashboard has data for viewing
 
-#### Buttons
+* Designated Primary Email: Notify an admin that they have been designated as a primary contact
 
-If your link text has a `>` at the end (for instance: `Continue >`), they show
-up as buttons.
+* Designated Team Member: Notify someone that they have been added as a team member to Versus Sentiment
 
-> [View in GitHub >][project]
+* Request a Demo: Let a potential user request a demo
 
-Customizing
-===========
+* Respond to Article: Notify a recipient to respond to a social media post
 
-Basic
------
+* Welcome to Versus: Notify the recipient that their Versus Sentiment account has been created
 
-### Theme options
+* Your Report: Dispatch a periodic report
 
-For the default theme (*theme-white*), You can set theme options by adding
-classes to the `` element. The available options are:
+# Profanity Filter
 
-#### big-h3
-Makes 3rd-level headings bigger.
+This function will take a string and return a HTML formattted string with tags that decorate profane words.
 
-``` html
-
-```
+# Scouts
 
-#### no-literate
-Disables "literate" mode, where code appears on the right and content text
-appear on the left.
+This has functions required for scouts to interact with campaigns:
 
-``` html
-
-```
+* Add Response
 
-#### large-brief
-Makes the opening paragraph large.
+* Create Scout
 
-``` html
-
-```
+* Get Campaigns
 
-### Adding more markup
+* Get DocRef
 
-You have full control over the HTML file, just add markup wherever you see fit.
-As long as you leave `role='flatdoc-content'` and `role='flatdoc-menu'` empty as
-they are, you'll be fine.
+* Get Questions
 
-Here are some ideas to get you started.
+* Get Responses
 
- * Add a CSS file to make your own CSS adjustments.
- * Add a 'Tweet' button on top.
- * Add Google Analytics.
- * Use CSS to style the IDs in menus (`#acknowledgements + p`).
+* Get Scout
 
-### JavaScript hooks
+# Tixy API Endpoints
 
-Flatdoc emits the events `flatdoc:loading` and `flatdoc:ready` to help you make
-custom behavior when the document loads.
+This documentation lists the API endpoints required for engineers on the Tixy team to interface with Tixy Backend. The API endpoints are generally grouped into the following.
+* To-do: edit the bullet points for Tixy docs
 
-``` js
-$(document).on('flatdoc:ready', function() {
-  // I don't like this section to appear
-  $("#acknowledgements").remove();
-});
-```
+# Versus-2.0 API Endpoints
 
-Full customization
-------------------
+This documentation lists the API endpoints required for engineers on the Versus team to interface with Versus-2.0 Backend. The API endpoints are generally grouped into the following.
 
-You don't have to be restricted to the given theme. Flatdoc is just really one
-`.js` file that expects 2 HTML elements (for *menu* and *content*). Start with
-the blank template and customize as you see fit.
+* Scouts
 
-[Get blank template >][template]
+* Dashboard
 
-Misc
-====
+# Getting started
 
-Inspirations
-------------
+All endpoints are REST. The default method is POST unless otherwise specified. There is a base URL to which you will need to append the endpoint.
 
-The following projects have inspired Flatdoc.
+> Method: POST
 
- * [Backbone.js] - Jeremy's projects have always adopted this "one page
- documentation" approach which I really love.
-
- * [Docco] - Jeremy's Docco introduced me to the world of literate programming,
- and side-by-side documentation in general.
-
- * [Stripe] - Flatdoc took inspiration on the look of their API documentation.
-
- * [DocumentUp] - This service has the same idea but does a hosted readme 
- parsing approach.
-
-Attributions
-------------
-
-[Photo](http://www.flickr.com/photos/doug88888/2953428679/) taken from Flickr,
-licensed under Creative Commons.
-
-Acknowledgements
-----------------
-
-© 2013, 2014, Rico Sta. Cruz. Released under the [MIT 
-License](http://www.opensource.org/licenses/mit-license.php).
-
-**Flatdoc** is authored and maintained by [Rico Sta. Cruz][rsc] with help from its 
-[contributors][c].
-
- * [My website](http://ricostacruz.com) (ricostacruz.com)
- * [Github](http://github.com/rstacruz) (@rstacruz)
- * [Twitter](http://twitter.com/rstacruz) (@rstacruz)
-
-[rsc]: http://ricostacruz.com
-[c]:   http://github.com/rstacruz/flatdoc/contributors
-
-[GitHub API]: http://github.com/api
-[marked]: https://github.com/chjj/marked
-[Backbone.js]: http://backbonejs.org
-[dox]: https://github.com/visionmedia/dox
-[Stripe]: https://stripe.com/docs/api
-[Docco]: http://jashkenas.github.com/docco
-[GitHub pages]: https://pages.github.com
-[fences]:https://help.github.com/articles/github-flavored-markdown#syntax-highlighting
-[DocumentUp]: http://documentup.com
-
-[project]: https://github.com/rstacruz/flatdoc
-[template]: https://github.com/rstacruz/flatdoc/raw/gh-pages/templates/template.html
-[blank]: https://github.com/rstacruz/flatdoc/raw/gh-pages/templates/blank.html
-[dist]: https://github.com/rstacruz/flatdoc/tree/gh-pages/v/0.9.0
+> Base_URL: https://us-central1-versus-dev-212614.cloudfunctions.net/
diff --git a/Readme.md.orig b/Readme.md.orig
new file mode 100644
index 0000000..0967599
--- /dev/null
+++ b/Readme.md.orig
@@ -0,0 +1,266 @@
+Flatdoc
+=======
+
+Flatdoc is a small JavaScript file that fetches Markdown files and renders them
+as full pages. Essentially, it's the easiest
+way to make open source documentation from *Readme* files.
+
+ * No server-side components
+ * No build process needed
+ * Deployable via GitHub Pages
+ * Can fetch GitHub Readme files
+ * Gorgeous default theme (and it's responsive)
+ * Just create an HTML file and deploy!
+
+*Current version: [v0.9.0][dist]*
+
+[![Build Status](https://travis-ci.org/rstacruz/flatdoc.svg?branch=gh-pages)](https://travis-ci.org/rstacruz/flatdoc)
+
+Getting started
+---------------
+
+Create a file based on the template, which has a bare DOM, link to the
+scripts, and a link to a theme. It will look something like this (not exact).
+For GitHub projects, simply place this file in your [GitHub pages] branch and
+you're all good to go.
+
+*In short: just download this file and upload it somewhere.*
+
+The main JS and CSS files are also available in [npm] and [bower].
+
+[Default theme template >][template]
+
+[Blank template >][blank]
+
+[bower]: http://bower.io/search/?q=flatdoc
+[npm]: https://www.npmjs.org/package/flatdoc
+
+### Via GitHub
+
+To fetch a Github Repository's readme file, use the `Flatdoc.github` fetcher.
+This will fetch the Readme file of the repository's default branch.
+
+``` javascript
+Flatdoc.run({
+  fetcher: Flatdoc.github('USER/REPO')
+});
+```
+
+You may also fetch another file other than the Readme file, just specify it as
+the 2nd parameter.
+
+``` javascript
+Flatdoc.run({
+  fetcher: Flatdoc.github('USER/REPO', 'Changelog.md')
+});
+```
+
+After you've done this, you probably want to deploy it via [GitHub Pages].
+
+[GitHub Pages guide >][GitHub Pages]
+
+### Via a file
+
+You may also fetch a file. In this example, this fetches the file `Readme.md` in
+the same folder as the HTML file.
+
+``` javascript
+Flatdoc.run({
+  fetcher: Flatdoc.file('Readme.md')
+});
+```
+
+You may actually supply any URL here. It will be fetched via AJAX. This is
+useful for local testing.
+
+``` javascript
+Flatdoc.run({
+  fetcher: Flatdoc.file('http://yoursite.com/Readme.md')
+});
+```
+
+How it works
+------------
+
+Flatdoc is a hosted `.js` file (along with a theme and its assets) that you can
+add into any page hosted anywhere.
+
+#### All client-side
+
+There are no build scripts or 3rd-party services involved. Everything is done in
+the browser. Worried about performance? Oh, It's pretty fast.
+
+Flatdoc utilizes the [GitHub API] to fetch your project's Readme files. You may
+also configure it to fetch any arbitrary URL via AJAX.
+
+#### Lightning-fast parsing
+
+Next, it uses [marked], an extremely fast Markdown parser that has support for
+GitHub flavored Markdown.
+
+Flatdoc then simply renders *menu* and *content* DOM elements to your HTML
+document. Flatdoc also comes with a default theme to style your page for you, or
+you may opt to create your own styles.
+
+Markdown extras
+---------------
+
+Flatdoc offers a few harmless, unobtrusive extras that come in handy in building
+documentation sites.
+
+#### Code highlighting
+
+You can use Markdown code fences to make syntax-highlighted text. Simply
+surround your text with three backticks. This works in GitHub as well.
+See [GitHub Syntax Highlighting][fences] for more info.
+
+    ``` html
+    Hola, mundo
+    ```
+
+#### Blockquotes
+
+Blockquotes show up as side figures. This is useful for providing side
+information or non-code examples.
+
+> Blockquotes are blocks that begin with `>`.
+
+#### Smart quotes
+
+Single quotes, double quotes, and double-hyphens are automatically replaced to
+their typographically-accurate equivalent. This, of course, does not apply to
+`` and `
` blocks to leave code alone.
+
+> "From a certain point onward there is no longer any turning back. That is the
+> point that must be reached."  
+> --Franz Kafka
+
+#### Buttons
+
+If your link text has a `>` at the end (for instance: `Continue >`), they show
+up as buttons.
+
+> [View in GitHub >][project]
+
+Customizing
+===========
+
+Basic
+-----
+
+### Theme options
+
+For the default theme (*theme-white*), You can set theme options by adding
+classes to the `` element. The available options are:
+
+#### big-h3
+Makes 3rd-level headings bigger.
+
+``` html
+
+```
+
+#### no-literate
+Disables "literate" mode, where code appears on the right and content text
+appear on the left.
+
+``` html
+
+```
+
+#### large-brief
+Makes the opening paragraph large.
+
+``` html
+
+```
+
+### Adding more markup
+
+You have full control over the HTML file, just add markup wherever you see fit.
+As long as you leave `role='flatdoc-content'` and `role='flatdoc-menu'` empty as
+they are, you'll be fine.
+
+Here are some ideas to get you started.
+
+ * Add a CSS file to make your own CSS adjustments.
+ * Add a 'Tweet' button on top.
+ * Add Google Analytics.
+ * Use CSS to style the IDs in menus (`#acknowledgements + p`).
+
+### JavaScript hooks
+
+Flatdoc emits the events `flatdoc:loading` and `flatdoc:ready` to help you make
+custom behavior when the document loads.
+
+``` js
+$(document).on('flatdoc:ready', function() {
+  // I don't like this section to appear
+  $("#acknowledgements").remove();
+});
+```
+
+Full customization
+------------------
+
+You don't have to be restricted to the given theme. Flatdoc is just really one
+`.js` file that expects 2 HTML elements (for *menu* and *content*). Start with
+the blank template and customize as you see fit.
+
+[Get blank template >][template]
+
+Misc
+====
+
+Inspirations
+------------
+
+The following projects have inspired Flatdoc.
+
+ * [Backbone.js] - Jeremy's projects have always adopted this "one page
+ documentation" approach which I really love.
+
+ * [Docco] - Jeremy's Docco introduced me to the world of literate programming,
+ and side-by-side documentation in general.
+
+ * [Stripe] - Flatdoc took inspiration on the look of their API documentation.
+
+ * [DocumentUp] - This service has the same idea but does a hosted readme 
+ parsing approach.
+
+Attributions
+------------
+
+[Photo](http://www.flickr.com/photos/doug88888/2953428679/) taken from Flickr,
+licensed under Creative Commons.
+
+Acknowledgements
+----------------
+
+© 2013, 2014, Rico Sta. Cruz. Released under the [MIT 
+License](http://www.opensource.org/licenses/mit-license.php).
+
+**Flatdoc** is authored and maintained by [Rico Sta. Cruz][rsc] with help from its 
+[contributors][c].
+
+ * [My website](http://ricostacruz.com) (ricostacruz.com)
+ * [Github](http://github.com/rstacruz) (@rstacruz)
+ * [Twitter](http://twitter.com/rstacruz) (@rstacruz)
+
+[rsc]: http://ricostacruz.com
+[c]:   http://github.com/rstacruz/flatdoc/contributors
+
+[GitHub API]: http://github.com/api
+[marked]: https://github.com/chjj/marked
+[Backbone.js]: http://backbonejs.org
+[dox]: https://github.com/visionmedia/dox
+[Stripe]: https://stripe.com/docs/api
+[Docco]: http://jashkenas.github.com/docco
+[GitHub pages]: https://pages.github.com
+[fences]:https://help.github.com/articles/github-flavored-markdown#syntax-highlighting
+[DocumentUp]: http://documentup.com
+
+[project]: https://github.com/rstacruz/flatdoc
+[template]: https://github.com/rstacruz/flatdoc/raw/gh-pages/templates/template.html
+[blank]: https://github.com/rstacruz/flatdoc/raw/gh-pages/templates/blank.html
+[dist]: https://github.com/rstacruz/flatdoc/tree/gh-pages/v/0.9.0
diff --git a/Scout.md b/Scout.md
new file mode 100644
index 0000000..8172e6d
--- /dev/null
+++ b/Scout.md
@@ -0,0 +1,1070 @@
+# Scout
+
+Endpoints for Versus Scouts
+
+## Add Response
+
+Add a response to a question.
+
+
+> Endpoint: scout_add_response
+
+> Payload
+
+``` javascript
+{
+  "cRef": "",
+  "qRef": "",
+  "sRef": "",
+  "response": "",
+  "clientRef": ""
+}
+```
+
+> Result
+``` javascript
+{
+  "response": {
+    "campaignRef": "0b3cf5bd-bea9-429b-b374-8f65e5473ed9",
+    "questionRef": "c30e78b6-ff88-49a5-91e9-bb7fb46f1455"
+    "scoutRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2",
+    "response": "response",
+    "clientRef": "clientRef"
+  }
+}
+```
+
+## Create Scout
+
+Add a scout - firstName, lastName and phoneNumber are required
+
+
+> Endpoint: scout_create_scout
+
+> Payload
+
+``` javascript
+{
+    "firstName": "James",
+    "lastName": "Austin",
+    "phoneNumber": "+2347023004000",
+    "bankName": "Prudential",
+    "bankCode": "002",
+    "accountNumber": "10-2-200-5",
+    "bvn": "bvn",
+    "emailAddress": "a@test.com",
+    "dob": "2017-12-31",
+    "gender": "Female",
+    "education": "education",
+    "maritalStatus": "maritalStatus",
+    "religion": "religion",
+    "occupation": "occupation",
+    "country": "country",
+    "state": "state",
+    "language": "English"
+}
+```
+
+> Result
+``` javascript
+{
+  "scoutRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2"
+}
+```
+
+## Get Campaigns
+
+Get all campaigns on the system
+
+
+> Endpoint: scout_get_campaigns
+
+> Payload
+
+``` javascript
+{}
+```
+
+> Result
+``` javascript
+{
+  "campaigns": [
+    {
+      "campaignName": "Biq Query",
+      "campaignRef": "0b3cf5bd-bea9-429b-b374-8f65e5473ed9",
+      "clientName": "The Enterprise",
+      "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+      "country": "NG",
+      "description": "Big query",
+      "education": null,
+      "endAge": 60,
+      "endDate": "2020-10-10 00:00:00",
+      "gender": null,
+      "maritalStatus": null,
+      "occupation": null,
+      "religion": null,
+      "startAge": 20,
+      "startDate": "2000-10-10 00:00:00",
+      "versusCreditsAccruing": 0
+    }
+  ]
+}
+```
+
+## Get DocRef
+
+Get a Scout reference given a phoneNumber.
+
+
+> Endpoint: scout_get_docref
+
+> Payload
+
+``` javascript
+{
+  "phoneNumber": "08023004000"
+}
+```
+
+> Result
+``` javascript
+{
+  "scouts": [
+    {
+        "firstName": "firstName",
+        "lastName": "lastName",
+        "phoneNumber": "phoneNumber",
+        "bankName": "bankName",
+        "bankCode": "bankCode",
+        "accountNumber": "accountNumber",
+        "bvn": "bvn",
+        "emailAddress": "emailAddress",
+        "dob": "dob",
+        "gender": "gender",
+        "education": "education",
+        "maritalStatus": "maritalStatus",
+        "religion": "religion",
+        "occupation": "occupation",
+        "country": "country",
+        "state": "state",
+        "language": "language",
+        "scoutRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2",
+        "versusCredits": {
+            "canCashOut": false,
+            "amount": 0
+        },
+        "verified": false,
+        "twoFA": false
+    }
+  ]
+}
+```
+
+## Get Questions
+
+Get the questions associated with a campaign.
+
+| Field | Type | Required | Description |
+| - | - | - | - |
+| docRef | string | required | A unique identifier of the campaign |
+| scoutRef | string | optional | Scout unique identifier |
+
+
+
+**Endpoint** scout_get_questions
+
+**Method** POST
+ 
+**Sample payload**
+``` json
+{
+  "docRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81",
+  "scoutRef": "+2341234567890"
+}
+```
+
+**Result**
+``` json
+{
+  "message": "Successfully obtained questions",
+  "questions": [
+        {
+            "questionRef": "9d2eb846-41f9-4745-af85-6d0a9951ecdc",
+            "campaignRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81",
+            "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+            "campaignName": "Demographics Survey",
+            "clientName": "The Enterprise",
+            "question": "What is your highest education level?",
+            "options": {
+                "range": [],
+                "options_list": [
+                    "No schooling completed",
+                    "Nursery school to 8th grade",
+                    "Some high school no diploma",
+                    "High school graduate diploma or the equivalent (for example: GED)",
+                    "Some college credit no degree",
+                    "Trade/technical/vocational training",
+                    "Associate degree",
+                    "Bachelors degree",
+                    "Masters degree",
+                    "Professional degree",
+                    "Doctorate degree"
+                ],
+                "unit": "single_select",
+                "type": "multiplechoice"
+            },
+            "sequence": null,
+            "optionsListNG": [],
+            "optionsListGH": [],
+            "optionsListKE": [],
+            "optionsUnitNG": null,
+            "optionsUnitGH": null,
+            "optionsUnitKE": null,
+            "optionsUnitTZ": null,
+            "optionsListTZ": []
+        }
+  ]
+}
+```
+
+**Errors**
+
+* 400 - Invalid param | Missing docRef
+* 404 - Scout does not exist
+* 500 - Error obtaining scout | error encountered while reading from db
+
+
+## Get Responses
+
+Get the responses associated with a question.
+
+
+> Endpoint: scout_get_questions
+
+> Payload
+
+``` javascript
+{
+  "docRef": "0b3cf5bd-bea9-429b-b374-8f65e5473ed9"
+}
+```
+
+> Result
+``` javascript
+{
+  "questions": [
+    {
+      "campaignRef": "0b3cf5bd-bea9-429b-b374-8f65e5473ed9",
+      "questionRef": "c30e78b6-ff88-49a5-91e9-bb7fb46f1455"
+      "scoutRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2",
+      "response": "response",
+      "clientRef": "clientRef"
+    }
+  ]
+}
+```
+
+## Get Scout
+
+Get a scout given the docRef
+
+
+> Endpoint: scout_get_scout
+
+> Payload
+
+``` javascript
+{
+  "docRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2"
+}
+```
+
+> Result
+``` javascript
+{
+    "firstName": "firstName",
+    "lastName": "lastName",
+    "phoneNumber": "phoneNumber",
+    "bankName": "bankName",
+    "bankCode": "bankCode",
+    "accountNumber": "accountNumber",
+    "bvn": "bvn",
+    "emailAddress": "emailAddress",
+    "dob": "dob",
+    "gender": "gender",
+    "education": "education",
+    "maritalStatus": "maritalStatus",
+    "religion": "religion",
+    "occupation": "occupation",
+    "country": "country",
+    "state": "state",
+    "language": "language",
+    "scoutRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2",
+    "versusCredits": {
+        "canCashOut": false,
+        "amount": 0
+    },
+    "verified": false,
+    "twoFA": false,
+    "requiresBankUpdate": false
+}
+```
+
+## Create Scout Wallet
+
+Create a Stellar Wallet associated with a Scout.
+
+| Field               | Type   | Description                                                                        |
+|---------------------|--------|------------------------------------------------------------------------------------|
+| sourceStellarSeed   | string | A Stellar Account funded in XLM to provide the mimimum balance needed for a wallet |
+| scoutRef            | string | A unique string to identify a scout, a wallet is created once for each scoutRef    | 
+
+> Endpoint: scout_create_wallet 
+
+> Payload
+
+```json
+{
+  "sourceStellarSeed": "SCY5QWUU7IGWGVUWYFSPBA2CAYQFYR63QALEIIX3ITYDPLV2AUIY6Q5S",
+  "scoutRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2"
+}
+```
+
+> Result
+
+```json
+{
+  "walletRef": "FQ0upRkKXT3xdwzzKs6X"
+}
+```
+
+## Fund a Scout Wallet
+
+Create a Stellar Wallet associated with a Scout.
+
+| Field               | Type   | Description                                                 |
+|---------------------|--------|-------------------------------------------------------------|
+| sourceStellarSeed   | string | A Stellar Issuing Account to provide at transaction fee     |
+| scoutRef            | string | A unique string to used to create a wallet for the scout    | 
+| versusCoinCredit    | string | VersusCoin amount formatted as a string to fund the wallet  | 
+
+> Endpoint: scout_fund_wallet
+
+> Payload
+
+```json
+{
+  "sourceStellarSeed": "SCY5QWUU7IGWGVUWYFSPBA2CAYQFYR63QALEIIX3ITYDPLV2AUIY6Q5S",
+  "scoutRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2",
+  "versusCoinCredit": "1.05"
+}
+```
+
+> Result
+
+```json
+{
+  "status": "ok"
+}
+```
+
+## Get Banks
+
+Get a list of banks supported by cashout in Nigeria
+
+
+> Endpoint: scout_get_banks
+
+> Payload
+
+``` javascript
+{
+  "authstring": "authentication string"
+}
+```
+
+> Result
+``` javascript
+{
+  "msg":"Successfully obtained banks list",
+  "banks":[
+    {"name":"Access Bank",
+    "slug":"access-bank",
+    "code":"044",
+    "longcode":"044150149",
+    "gateway":"emandate",
+    "pay_with_bank":false,
+    "active":true,
+    "is_deleted":null,
+    "country":"Nigeria",
+    "currency":"NGN",
+    "type":"nuban",
+    "id":1,
+    "createdAt":"2016-07-14T10:04:29.000Z",
+    "updatedAt":"2019-06-18T10:52:46.000Z"
+    }
+    .
+    .
+    .
+  ]
+}
+```
+
+## Convert Scout Credits
+
+Convert scout credits to amount in local currency
+
+
+> Endpoint: scout_convert_amount
+
+> Payload
+
+``` javascript
+{
+  "authstring": "authentication string",
+  "amount": "scout credits to be converted",
+  "country": "Two letter alpha-2 ISO code of country for which credit amount is to be converted e.g 'NG'"
+}
+```
+
+> Result
+``` javascript
+
+{
+  "message":
+  "Successfully converted scout credit",
+  "convertedAmount":1628,
+  "currency":"NGN"
+}
+```
+
+## Verify Account Number
+
+Verify that scout bank account number is correct and can recieve funds
+
+> Endpoint: scout_verify_account_number
+
+> Payload
+
+``` javascript
+{
+  "authstring": "authentication string",
+  "accountNumber": "bank account number",
+  "bankCode": "bank code - returned from scout_getbanks",
+  "bankName": "name of bank - returned from scout_getbanks",
+  "phoneNumber": "scount phone number"
+}
+```
+
+> Result
+``` javascript
+{
+  "message":"Sucessfully verified account number",
+  "accountNumber":"1234567890",
+  "accountName":"JOHN DOE"
+}
+```
+
+## Verify Account Number
+
+Verify that scout bank account number is correct and can recieve funds
+
+> Endpoint: scout_verify_account_number
+
+> Payload
+
+``` javascript
+{
+  "authstring": "authentication string",
+  "accountNumber": "bank account number",
+  "bankCode": "bank code - returned from scout_getbanks",
+  "bankName": "name of bank - returned from scout_getbanks",
+  "phoneNumber": "scount phone number"
+}
+```
+
+> Result
+``` javascript
+{
+  "message":"Sucessfully verified account number",
+  "account": {
+    "account_number":"1234567890",
+    "account_name":"JOHN DOE"
+  }
+}
+```
+
+## Cashout
+
+Cashout scout credits to local currency
+
+> Endpoint: scout_cashout
+
+> Payload
+
+``` javascript
+{
+  "authstring": "authentication string",
+  "accountNumber": "bank account number",
+  "amount": "credit amount to be cashed out",
+  "country": "NG",
+  "phoneNumber": "+2348045634567"
+}
+```
+
+> Result
+``` javascript
+{
+  "message":"Successfully transferred money to recipient",
+  "credits":"50",
+  "amount":2714,
+  "currency":"NGN",
+  "referenceNumber":"b96f5fc7-722b-4f9e-bf81-a114d45f8dc6"
+}
+```
+
+
+## Get Image Requests
+
+Get a list of multimedia requests of mediaType _image_ a scout is eligible to send responses.
+
+**Endpoint** 
+scout_get_image_requests
+
+**Method** 
+GET
+
+**Query params**
+
+| Field | Type | Description |
+| - | - | - |
+| phoneNumber | string | Scout unique identifier |
+| authString | string | Authentication string |
+
+
+> Sample response
+``` json
+{
+  "message": "Successfully obtained image requests",
+   "requests":[
+      {
+        "clientRef": "12345",
+        "clientName": "The Enterprise",
+        "requestName": "Footage of the Lekki Protest",
+        "description": "Let’s get you started with a simple photo request.",
+        "requestRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81",
+        "country": "NG",
+        "stateOrRegion": "Lagos",
+        "created": "Thu Nov 12 2020 14:20:50 GMT+0100 (West Africa Standard Time)",
+        "endAge": 65,
+        "startAge": 16,
+        "gender": "female",
+        "numberOfRespondents": 500,
+        "mediaType": "image",
+        "status": "live",
+        "versusCreditsAccruing": 2
+      }
+    .
+    .
+    .
+  ]
+}
+```
+
+**Errors**
+
+* 400 - Only GET requests are allowed | Missing query parameter | Invalid param
+* 401 - Invalid authstring
+* 403 - Scout is unverified | Scout is missing demographic field
+* 404 - Scout does not exist | There are no image requests
+* 500 - Error obtaining image requests
+
+
+## Get Audio Requests
+
+Get a list of multimedia requests of mediaType _audio_ a scout is eligible to send responses.
+
+**Endpoint** 
+scout_get_audio_requests
+
+**Method** 
+GET
+
+> Result
+``` python
+{
+  "message": "Successfully obtained audio requests",
+   "requests":[
+      {
+        "clientRef": "12345",
+        "clientName": "The Enterprise",
+        "requestName": "Footage of the Lekki Protest",
+        "description": "Let’s get you started with a simple photo request.",
+        "requestRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81",
+        "country": "NG",
+        "stateOrRegion": "Lagos",
+        "created": "Thu Nov 12 2020 14:20:50 GMT+0100 (West Africa Standard Time)",
+        "endAge": 65,
+        "startAge": 16,
+        "gender": "female",
+        "numberOfRespondents": 500,
+        "mediaType": "audio",
+        "status": "live",
+        "versusCreditsAccruing": 2
+      }
+    .
+    .
+    .
+  ]
+}
+```
+
+**Errors**
+
+* 400 - Only GET requests are allowed | Missing query parameter | Invalid param
+* 401 - Invalid authstring
+* 403 - Scout is unverified | Scout is missing demographic field
+* 404 - Scout does not exist | There are no audio requests
+* 500 - Error obtaining audio requests
+
+
+## Get Video Requests
+
+Get a list of multimedia requests of mediaType _video_ a scout is eligible to send responses.
+
+**Endpoint** 
+scout_get_video_requests
+
+> Result
+``` python
+{
+  "message": "Successfully obtained video requests",
+   "requests":[
+      {
+        "clientRef": "12345",
+        "clientName": "The Enterprise",
+        "requestName": "Footage of the Lekki Protest",
+        "description": "Let’s get you started with a simple photo request.",
+        "requestRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81",
+        "country": "NG",
+        "stateOrRegion": "Lagos",
+        "created": "Thu Nov 12 2020 14:20:50 GMT+0100 (West Africa Standard Time)",
+        "endAge": 65,
+        "startAge": 16,
+        "gender": "female",
+        "numberOfRespondents": 500,
+        "mediaType": "audio",
+        "status": "live",
+        "versusCreditsAccruing": 2
+      }
+    .
+    .
+    .
+  ]
+}
+```
+
+**Errors**
+
+* 400 - Only GET requests are allowed | Missing query parameter | Invalid param
+* 401 - Invalid authstring
+* 403 - Scout is unverified | Scout is missing demographic field
+* 404 - Scout does not exist | There are no video requests
+* 500 - Error obtaining video requests
+
+## Get Multimedia Requests
+
+Get a list of multimedia requests a scout is eligible to send responses.
+
+**Endpoint** 
+scout_get_multimedia_requests
+
+**Method** 
+GET
+
+**Query params**
+
+| Field | Type | Description |
+| - | - | - |
+| phoneNumber | string | Scout unique identifier |
+| authString | string | Authentication string |
+
+
+> Sample response
+``` json
+{
+  "message": "Successfully obtained multimedia requests",
+  "requests":[
+    {
+      "clientRef": "12345",
+      "clientName": "The Enterprise",
+      "requestName": "Footage of the Lekki Protest",
+      "description": "Let’s get you started with a simple photo request.",
+      "requestRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81",
+      "country": "NG",
+      "stateOrRegion": "Lagos",
+      "created": "Thu Nov 12 2020 14:20:50 GMT+0100 (West Africa Standard Time)",
+      "endAge": 65,
+      "startAge": 16,
+      "gender": "female",
+      "numberOfRespondents": 500,
+      "spotsLeft": 500,
+      "mediaType": "image",
+      "status": "live",
+      "versusCreditsAccruing": 2
+    }
+  ]
+}
+```
+
+**Errors**
+
+* 400 - Only GET requests are allowed | Missing query parameter | Invalid param
+* 401 - Invalid authstring
+* 403 - Scout is unverified | Scout is missing demographic field
+* 404 - Scout does not exist | There are no multimedia requests
+* 500 - Error obtaining multimedia requests
+
+
+## Add Multimedia Response
+
+Add multimedia request responses
+
+| Field | Type | Description |
+| - | - | - |
+| requestRef | string | A unique identifier of the request for which a response is to be sent |
+| scoutRef | string | A unique identifier of the scout sending the response |
+| mediaType | string | The type of media the response is made of. `image`, `audio` or `video`
+| mediaUrls | array | An array of (string) URL(s) pointing to the location which the response media is stored | 
+| authstring | string | Authentication string |
+
+> Endpoint: scout_add_multimedia_request_response
+
+> Method: POST
+
+> Sample payload
+
+``` json
+{
+  "requestRef": "12345",
+  "scoutRef": "239485855559",
+  "mediaUrls":["https://google.api.com/235617"],
+  "mediaType":"audio",
+  "authstring": "123567890987654321"
+}
+```
+
+> Sample response
+``` json
+{
+  "message":"Successfully added multimedia request response",
+  "responseRef": "9596869640495837"
+}
+```
+
+**Errors**
+
+* 400 - Missing parameter requestRef | Invalid param mediaUrls. Should be array of strings | Wrong mediaType. Request is for audio | Failed authentication. Authstring invalid or not found in request body
+* 403 - Only POST requests are allowed
+* 404 - Multimedia request does not exist
+* 500 - Error adding multimedia request response | Error obtaining multimedia request
+
+
+## Get Multimedia Responses
+
+Get completed request responses arranged from the most recent.
+
+**Endpoint** 
+scout_get_request_responses
+
+**Method** 
+GET
+
+**Query params**
+
+| Field | Type | Description |
+| - | - | - |
+| phoneNumber | string | Scout unique identifier |
+| authString | string | Authentication string |
+
+
+> Sample Response
+``` json
+{
+  "message": "Successfully obtained request responses",
+  "responses":[
+    {
+      "clientRef": "12345",
+      "requestRef": "12345",
+      "scoutRef": "+2340927738929",
+      "mediaUrls":["https://google.api.com/235617"],
+      "created": "Thu Nov 12 2020 14:20:50 GMT+0100 (West Africa Standard Time)",
+      "mediaType":"audio",
+      "status": "pending"
+    }
+  ]
+}
+```
+
+**Errors**
+
+* 400 - Only GET requests are allowed | Missing query parameter | Invalid param
+* 401 - Invalid authstring
+* 500 - Error fetching request responses
+
+
+## Get Scouts Paystack Cashout
+
+Get scouts Paystack Cashouts and Chart.
+
+> Endpoint: scout_get_scouts_paystack_cashouts
+
+> Payload
+``` python
+{
+    "idToken": "eyJhbGciOiJSUzI1NiIs...",
+    "uid": "db3aLSS5AtalI7xqCa...",
+    "period": "lastMonth"
+}
+```
+
+> Result
+``` python
+{
+  "status": true,
+  "message": "Successful",
+  "totalPages": 12,
+  "totalCashouts": 114,
+  "pageSize": 10,
+  "currentPage": 1,
+   "cashouts": [
+      {
+          "scoutRef": "+2349017766085",
+          "data": {
+              "updatedAt": "2020-09-12T15:24:10.805Z",
+              "reference": "009f685e-604f-4140-9b6f-00408eaadb56",
+              "status": "success",
+              "recipient": 8758390,
+              "amount": 189000,
+              "reason": "Redeem Versus scout credits",
+              "integration": 146241,
+              "domain": "test",
+              "source": "balance",
+              "currency": "NGN",
+              "transfer_code": "TRF_63y76ctdr8a8cr7",
+              "createdAt": "2020-09-12T15:24:10.805Z",
+              "id": 32768223
+          },
+          "message": "Transfer has been queued",
+          "status": true
+      }
+    .
+    .
+    .
+  ],
+  "cashoutsChart": [
+    {
+        "date": "Dec 25",
+        "successfulCount": 2,
+        "successfulAmount": 70100,
+        "failedCount": 0,
+        "failedAmount": 0
+    }
+    .
+    .
+    .
+  ]
+}
+```
+
+
+## Get Scouts Paga Cashout
+
+Get scouts Paga Cashouts and Chart.
+
+> Endpoint: scout_get_scouts_paga_cashouts
+
+> Payload
+``` python
+{
+    "idToken": "eyJhbGciOiJSUzI1NiIs...",
+    "uid": "db3aLSS5AtalI7xqCa...",
+    "period": "lastMonth"
+}
+```
+
+> Result
+``` python
+{
+  "status": true,
+  "message": "Successful",
+  "totalPages": 12,
+  "totalCashouts": 114,
+  "pageSize": 10,
+  "currentPage": 1,
+   "cashouts": [
+      {
+          "updatedAt": "2021-01-05T11:13:35.252Z",
+          "exchangeRate": null,
+          "amount": 54,
+          "responseCode": 0,
+          "withdrawalCode": null,
+          "receiverRegistrationStatus": "UNREGISTERED",
+          "referenceNumber": "3cdf95cc-54fc-4e1b-bb68-23a0e912ee89",
+          "message": "You have successfully sent N54.00 to +2347030287520. Paga Txn ID: WG7H2. Thank you for using Paga!",
+          "transactionId": "WG7H2",
+          "currency": "NGN",
+          "fee": 150
+      }
+    .
+    .
+    .
+  ],
+  "cashoutsChart": [
+    {
+        "date": "Dec 25",
+        "successfulCount": 2,
+        "successfulAmount": 70100,
+        "failedCount": 0,
+        "failedAmount": 0
+    }
+    .
+    .
+    .
+  ]
+}
+```
+
+## Get Scout Statistics
+
+Get scouts statistics.
+
+> Endpoint: scout_get_scouts_statistics
+
+> Payload
+``` python
+{
+    "idToken": "eyJhbGciOiJSUzI1NiIs...",
+    "uid": "db3aLSS5AtalI7xqCa..."
+}
+```
+
+> Result
+``` python
+{
+  "status": true,
+  "message": 'Successful',
+  "data": {
+    "scouts": {
+      "total": 1222,
+      "usingPayStack": 600,
+      "usingPaga": 622
+    },
+    "tokens": {
+      "total": 1222,
+      "usingPayStack": 600,
+      "usingPaga": 62
+    },
+    "naira": {
+      "total": 1222,
+      "usingPayStack": 600,
+      "usingPaga": 622
+    }
+  }
+}
+```
+
+
+
+## Missing Data Notification
+
+Get scouts statistics.
+
+> Endpoint: scout_missing_data_notification
+
+> Payload
+``` python
+{
+    "idToken": "eyJhbGciOiJSUzI1NiIs...",
+    "uid": "db3aLSS5AtalI7xqCa...",
+    "scoutRef": "+23480343233
+}
+```
+
+> Result
+``` python
+{
+  "status": true,
+  "message": 'Successfully notified scout',
+}
+```
+
+
+
+## Missing Data Notification
+
+Notify scout with missing responses in demographic survey
+
+> Endpoint: scout_missing_data_notification
+
+> Payload
+``` python
+{
+    "authString": "dfbeavt4h463234255dsR"
+    "scoutRef": "+23480343233
+}
+```
+
+> Result
+``` python
+{
+  "status": true,
+  "message": 'Successfully notified scout',
+}
+```
+
+## Get Missing Data
+Get missing responses in demographic survey
+
+> Endpoint: scout_get_missing_data
+
+> Payload
+``` python
+{
+    "authString": "dfbeavt4h463234255dsR"
+    "scoutRef": "+23480343233
+}
+```
+
+> Result
+``` python
+{
+  "status": true,
+  "message": "Successfully obtained missing questions",
+  "questions": []
+}
+```
+
+
+## Image Is Safe
+Verify that an image is suitable for upload
+
+> Endpoint: scout_image_is_safe
+
+> Payload
+``` python
+{
+    "authString": "dfbeavt4h463234255dsR"
+    "scoutRef": "+23480343233
+}
+```
+
+> Result
+``` python
+{
+  "status": true,
+  "message": "Image is suitable for submission"
+}
+```
+
+
diff --git a/Settings.md b/Settings.md
new file mode 100644
index 0000000..9eb6af1
--- /dev/null
+++ b/Settings.md
@@ -0,0 +1,160 @@
+# Settings
+
+These endpoints can be used to obtain and update scout and client settings.
+
+## Get Scout Settings
+
+Obtains scout settings.
+
+> Endpoint: get_scout_settings
+
+> Method: GET
+
+> Payload
+
+```json
+{
+  "authstring": "55ad4986-b519-4e44-ab0b-890527299af6"
+}
+```
+
+> Response
+
+```json
+{
+  "message": "Successfully obtained scout settings",
+  "scoutSettings": {
+    "creditsPerQuestion_video": 2,
+    "creditsPerQuestion_audio": 2,
+    "usdPerCredit": 0.05,
+    "exchangeRate_NGNperUSD": 360,
+    "creditsPerQuestion_image": 2,
+    "creditsPerQuestion_text": 1
+  }
+}
+```
+
+> Errors
+
+* 401 = Unauthorized request
+* 403 - Only GET requests are allowed
+* 500 - Error getting scout settings
+
+
+## Update Scout Settings
+
+Update scout settings.
+
+> Endpoint: update_scout_settings
+
+> Method: POST
+
+> Payload
+
+``` json
+{
+  "authstring": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "creditsPerQuestion_audio": 2,
+  // and more scout settings
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully updated scout settings",
+    "update": {
+      "creditsPerQuestion_audio": 2
+    }
+}
+```
+
+> Errors
+
+* 400 - No required values included for update
+* 401 - Unauthorized request
+* 403 - Only POST requests are allowed
+* 404 - Scout does not exist
+* 500 - Error updating scout settings
+
+
+## Get Client Settings
+
+Obtains client settings.
+
+> Endpoint: get_client_settings
+
+> Method: POST
+
+> Payload
+
+```json
+{
+  "uid": "7gPJM7CHa5divxg0BPMdknW8hi03",
+  "idToken": "NlY3VyZXRva2VuLmdvb2dsZS5jb20vdmVyc3VzLXNjb3V0LWRldiIsImF1ZCI6InZlcnN1cy1zY291dC1kZXYiLCJhdXRo"
+}
+```
+
+> Response
+
+```json
+{
+  "message": "Successfully obtained client settings",
+  "clientSettings": {
+    "creditsPerQuestion_audio": 2,
+    "creditsPerQuestion_video": 2,
+    "exchangeRate_NGNperUSD": 360,
+    "usdPerCredit": 0.05,
+    "usdPerRespondent_interact": 0.5,
+    "creditsPerQuestion_image": 2,
+    "creditsPerQuestion_text": 1
+  }
+}
+```
+
+> Errors
+
+* 400 - Missing parameter idToken, uid
+* 401 - User is not authorized to make this request | Error authenticating user
+* 403 - Only POST requests are allowed
+* 500 - Error getting client settings
+
+
+## Update Client Settings
+
+Update client settings.
+
+> Endpoint: update_client_settings
+
+> Method: POST
+
+> Payload
+
+``` json
+{
+  "uid": "7gPJM7CHa5divxg0BPMdknW8hi03",
+  "idToken": "NlY3VyZXRva2VuLmdvb2dsZS5jb20vdmVyc3VzLXNjb3V0LWRldiIsImF1ZCI6InZlcnN1cy1zY291dC1kZXYiLCJhdXRo",
+  "creditsPerQuestion_audio": 2,
+  // and more client settings
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully updated client settings",
+    "update": {
+      "creditsPerQuestion_audio": 2
+    }
+}
+```
+
+> Errors
+
+* 400 - Missing auth parameter(s) idToken, uid | No required values included for update
+* 401 - User is not authorized to make this request | Error authenticating user
+* 403 - Only POST requests are allowed
+* 404 - Scout does not exist
+* 500 - Error updating client settings
diff --git a/Tixy.md b/Tixy.md
new file mode 100644
index 0000000..4a027a3
--- /dev/null
+++ b/Tixy.md
@@ -0,0 +1,310 @@
+# Tixy
+
+Endpoint for Tixy
+
+## Create an account (Sign up)
+
+> Endpoint: tixy_register
+
+> Payload
+
+```json
+{
+    "email": "email",
+    "industry": "industry",
+    "password": "password",
+    "organizer": "organizer",
+    "website": "website"
+}
+```
+
+> Result
+
+```json
+{
+    "accountRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2"
+}
+```
+
+## Sign-in to an account
+
+> Endpoint: tixy_sign_in
+
+> Payload
+
+```json
+{
+    "email": "email",
+    "password": "password"
+}
+```
+> Result
+
+```json
+{
+    "account": {
+        "accountRef": "ea7ca901-9217-4a04-9af4-3c6c21ccc3a2",
+        "email": "email",
+        "industry": "industry",
+        "organizer": "organizer",
+        "website": "website",
+        "plan": ""
+    }
+}
+
+```
+## get_event_by_email (Retreive event)
+
+> Endpoint: get_events_by_email.py
+
+> Payload
+
+```json
+{
+    "email": "email"
+}
+```
+
+> Result
+
+```json
+
+{
+    "event1": {"event_id": 1, 
+                "event_name": "event_name", 
+                "event_tag": "event_tag",
+                "start_date": "2019-12-02T12:30:30.001Z", 
+                "end_date": "2019-05-04T12:30:30.001Z", 
+                "username": "username", 
+                "no_tickets_sold": 12,
+                "revenue": 36000, 
+                "status": "status"},
+    "event2": {"event_id": 2, 
+                "event_name": "Slay Festival", 
+                "event_tag": "Slay", 
+                "start_date": "2019-01-24T12:30:30.001Z",
+                "end_date": "2019-05-04T12:30:30.001Z", 
+                "username": "username", 
+                "no_tickets_sold": 62,
+                "revenue": 186000, 
+                "status": "status"}
+
+}
+```
+
+## get_events_by_status (Retreive event)
+
+> Endpoint: get_events_by_status.py
+
+> Payload
+
+```json
+{
+    "username": "username", "status":"status"
+}
+```
+
+> Result
+
+```json
+
+{
+    "event1": {"event_id": 1, 
+                "event_name": "event_name", 
+                "event_tag": "event_tag",
+                "start_date": "2019-12-02T12:30:30.001Z", 
+                "end_date": "2019-05-04T12:30:30.001Z", 
+                "username": "username", 
+                "no_tickets_sold": 12,
+                "revenue": 36000, 
+                "status": "status"},
+    "event2": {"event_id": 2, 
+                "event_name": "Slay Festival", 
+                "event_tag": "Slay", 
+                "start_date": "2019-01-24T12:30:30.001Z",
+                "end_date": "2019-05-04T12:30:30.001Z", 
+                "username": "username", 
+                "no_tickets_sold": 62,
+                "revenue": 186000, 
+                "status": "status"}
+
+}
+```
+
+## get_events_by_tag (Retreive event)
+
+> Endpoint: get_events_by_tag.py
+
+> Payload
+
+```json
+{
+    "username": "username", "tag":"tag"
+}
+```
+
+> Result
+
+```json
+
+{
+    "event1": {"event_id": 1, 
+                "event_name": "event_name", 
+                "event_tag": "event_tag",
+                "start_date": "2019-12-02T12:30:30.001Z", 
+                "end_date": "2019-05-04T12:30:30.001Z", 
+                "username": "username", 
+                "no_tickets_sold": 12,
+                "revenue": 36000, 
+                "status": "status"},
+    "event2": {"event_id": 2, 
+                "event_name": "Slay Festival", 
+                "event_tag": "Slay", 
+                "start_date": "2019-01-24T12:30:30.001Z",
+                "end_date": "2019-05-04T12:30:30.001Z", 
+                "username": "username", 
+                "no_tickets_sold": 62,
+                "revenue": 186000, 
+                "status": "status"}
+
+}
+```
+
+## get_no_of_sold_tickets (Retreive the number of ticket sold over a specified period of time)
+
+> Endpoint: get_no_of_sold_tickets.py
+
+> Payload
+
+```json
+{
+    "username": "username", "period":"period"
+}
+```
+
+> Result
+
+```json
+
+{"number_of_tickets_sold": "number_of_tickets_sold"}
+```
+
+## get_total_revenue (Retreive the amount of revenue made over a specified period of time)
+
+> Endpoint: get_no_of_sold_tickets.py
+
+> Payload
+
+```json
+{
+    "username": "username", "period":"period"
+}
+```
+
+> Result
+
+```json
+
+{"total_revenue":"total_revenue"}
+```
+
+## get_recent_purchases_by_email (Retreive top 10 tickets purchase records)
+
+> Endpoint: get_recent_purchases_by_email.py
+
+> Payload
+
+```json
+{
+    "email": "email"
+}
+```
+
+> Result
+
+```json
+
+
+{
+    "event1": 
+        {"ticket_buyer_name": "David", 
+        "amount": 24000, 
+        "event_name": "Teker Expo", 
+        "purchase_date": "2019-05-04T12:30:30.001Z"}, 
+    "event2": 
+        {"ticket_buyer_name": "David",
+         "amount": 6000,
+         "event_name": "Teker Expo", 
+         "purchase_date": "2019-05-04T12:30:30.001Z"} 
+}
+
+```
+
+## create_event (create a new event)
+
+> Endpoint: create_event.py
+
+> Payload
+
+```json
+{
+    "username":"username",
+    "event_name":"event_name",
+    "event_tag":"event_tag",
+    "description":"description",
+    "start_date":"start_date",
+    "end_date":"end_date"
+}
+```
+
+> Result
+
+```json
+{   "event_ref":"event_ref",
+    "username":"username",
+   "event_name":"event_name",
+   "event_tag":"event_tag",
+   "description":"description",
+   "start_date":"start_date",
+   "end_date":"end_date"    
+
+   } 
+
+```
+
+## edit_user_info (Retreive top 10 tickets purchase records)
+
+> Endpoint: create_event.py
+
+> Payload
+
+```json
+{
+    "event_name":"event_name",
+    "event_tag":"event_tag",
+    "description":"description",
+    "start_date":"start_date",
+    "email":"email",
+    "end_date":"end_date",
+    "twitter_link":"twitter_link",
+    "facebook_link":"facebook_link"
+}
+```
+
+> Result
+
+```json
+{   "event_ref":"event_ref",
+   "event_name":"event_name",
+   "event_tag":"event_tag",
+   "description":"description",
+   "email":"email",
+   "description":"description",
+   "start_date":"start_date",
+   "end_date":"end_date",
+   "twitter_link":"twitter_link",
+    "facebook_link":"facebook_link"   
+
+   } 
+
+```
\ No newline at end of file
diff --git a/Versus-2.0.md b/Versus-2.0.md
new file mode 100644
index 0000000..9fb1c71
--- /dev/null
+++ b/Versus-2.0.md
@@ -0,0 +1,2147 @@
+# General
+
+These are general purpose endpoints that are not necessarily attached to scout or dashboard functions
+
+## Send SMS
+
+This function leverages Twilio APIs to send SMS to a phone number. 
+Please use the endpoint and sample _authstring_ as is.
+
+> Endpoint: https://us-central1-versus-dev-212614.cloudfunctions.net/versus_v2_send_sms
+
+> Payload
+
+```json
+{
+  "phoneNumber": "+2348123456789",
+  "message": "Text message to be sent",
+  "authstring": "55ad4986-b519-4e44-ab0b-890527299af6"
+}
+```
+
+> Response
+
+```json
+{
+  "message": "Successfully sent SMS"
+}
+```
+
+> Errors
+
+* 400 - Missing parameter phoneNumber, message, authstring || Failed authentication. Invalid authstring || Message exceeds allowed number of characters 150/140
+* 500 - Failed to send SMS
+
+# Scout
+
+This has endpoints for managing scout actions that are unique to Versus 2.0. For other actions refer to v1 docs. 
+
+## End Campaign
+
+This is called after a scout has answered all campaign questions. It calculates the credits earned and adds it to respective scout account.
+
+> Endpoint: scout_end_campaign
+
+> Payload
+
+``` json
+{
+  "phoneNumber": "+2348123456789",
+  "campaignRef": "47b73826-e9b2-412f-b8b4-c055eeec778b",
+  "authstring": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully submitted survey and credited scout",
+  "credits": 12,
+  "campaignRef": "47b73826-e9b2-412f-b8b4-c055eeec778b"
+}
+```
+
+> Errors
+
+* 401 - Failed authentication. Authstring invalid or not found in request body
+* 403 - Missing required parameters || Scout has already completed this campaign
+* 404 - Scout does not exist
+* 500 - Backend service error || Oops! Something happened from our end
+
+## Get Campaigns
+
+To obtain campaigns that match a scout's demographic.
+
+> Endpoint: scout_get_campaigns
+
+> Payload
+
+``` json
+{
+  "phoneNumber": "+2348123456789"
+}
+```
+
+> Response
+
+``` json
+{
+  "campaigns": [
+    {
+      "description": "Let’s get you started with a simple demographics survey! This will help us send you surveys that are more appropriate for you.",
+      "endDate": 2571212464693,
+      "startDate": 1546300800,
+      "campaignName": "Demographics Survey",
+      "isDemographicSurvey": true,
+      "campaignRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81",
+      "country": "NG",
+      "clientName": "The Enterprise",
+      "clientRef": "nqaXKB0SzWN6xh7RVyzlzl",
+      "endAge": 65,
+      "startAge": 16,
+      "versusCreditsAccruing": 0
+    }
+  ]
+}
+```
+
+> Errors
+
+* 400 - Scout is not verified
+* 403 - Missing required param: phoneNumber 
+* 404 - Scout does not exist
+* 500 - Backend service error || Oops! Something broke from our end 
+
+## Get Partners
+
+Get current scout partners.
+
+> Endpoint: scout_get_partners
+
+> Payload
+
+``` json
+{
+  "authstring": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained scout partners",
+  "scoutPartners": [
+    {
+        "scoutPartnerRef": "33c514f8-3484-4646-a0b3-6be4a5957248",
+        "name": "Facebook"
+    },
+    {
+        "name": "Catch them Young Nigeria (Next Digital Talent)",
+        "scoutPartnerRef": "4e18e782-e873-4832-879d-97b288a9e85b"
+    },
+    {
+        "scoutPartnerRef": "86f52918-4987-4c0b-a71d-37ab743bc58d",
+        "name": "West Africa Vocational Education (WAVE)"
+    },
+    {
+        "scoutPartnerRef": "a25b5ac8-3e17-4e35-9ce8-f534e89b4e02",
+        "name": "Instagram"
+    },
+    {
+        "scoutPartnerRef": "af8ed4cf-974c-4b69-9663-3c115594655f",
+        "name": "She Leads Africa"
+    },
+    {
+        "scoutPartnerRef": "d3c48853-eda9-45d6-b127-4d3f66dcb975",
+        "name": "Twitter"
+    },
+    {
+        "name": "GIEVA",
+        "scoutPartnerRef": "f572e8a0-7526-41df-962b-1fb20ad7baa1"
+    }
+  ]
+}
+```
+
+> Errors
+
+* 400 - Missing authstring in request body
+* 401 - Failed authentication. Invalid authstring
+* 500 - Backend service error || Oops! Something broke from our end
+
+## Convert Amount
+
+Convert scout credit amount to equivalent cash.
+
+> Endpoint: scout_convert_amount
+
+> Payload
+
+``` json
+{
+  "amount": 200,
+  "country": "NG",
+  "authstring": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully converted scout credit",
+  "convertedAmount": 10800,
+  "currency": "NGN"
+  }
+}
+```
+
+> Errors
+
+* 400 - Missing body parameters... || We do not yet support cashout in that country || Error converting scout credit
+* 401 - Failed authentication. Authstring invalid or not found in request body
+* 500 - Backend service error
+
+## Verify Account Number
+
+This endpoint verifies scout bank account number and creates a Paystack recipient ready for transfer of funds.
+
+> Endpoint: scout_verify_account_number
+
+> Payload
+
+``` json
+{
+  "phoneNumber": "+2348123456789",
+  "accountNumber": "0123456789",
+  "bankCode": "026",
+  "bankName": "ZENITH",
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Sucessfully verified account number",
+  "accountName": "XAVIER STAN",
+  "accountNumber": "0123456789"
+  }
+}
+```
+
+> Errors
+
+* 400 - Missing body parameters ... || Error verifying account number || Error creating recipient
+* 401 - Failed authentication. Authstring invalid or not found in request body
+* 404 - Scout does not exist
+* 500 - Backend service error || Error verifying account || Error obtaining scout
+
+## Cashout
+
+Initiate transfer of funds to scout bank account.
+
+> Endpoint: scout_cashout
+
+> Payload
+
+``` json
+{
+  "phoneNumber": "+2348123456789",
+  "amount": 1000,
+  "accountNumber": "01234567890",
+  "country": "NG",
+  "authstring": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully transferred money to recipient",
+  "credits": 12,
+  "amount": 1000,
+  "currency": "NGN",
+  "referenceNumber": "t_c7c53f113d5ac7c53f113d5a"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters || That country is not yet supported for cashout || Error converting scout credit for transfer || Error initiating transfer to scout || Error checking transfer status || Failed to transfer money to recipient
+* 401 - Failed authentication. Authstring invalid or not found in request body
+* 403 - The given account number is invalid, please verify bank account || Insufficient scout credit balance || Cashout is disabled for this scout. Less than 33 credits || Scout does not have a verified bank account
+* 404 - Scout does not exist
+* 500 - Backend service error
+
+## Get Banks
+
+Obtain a list of banks with their codes.
+
+> Endpoint: scout_get_banks
+
+> Payload
+
+``` json
+{
+  "authstring": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "msg": "Successfully obtained banks list",
+  "banks": [
+    {
+      "name": "Access Bank",
+      "slug": "access-bank",
+      "code": "044",
+      "longcode": "044150149",
+      "gateway": "emandate",
+      "pay_with_bank": false,
+      "active": true,
+      "is_deleted": null,
+      "country": "Nigeria",
+      "currency": "NGN",
+      "type": "nuban",
+      "id": 1,
+      "createdAt": "2016-07-14T10:04:29.000Z",
+      "updatedAt": "2020-02-18T08:06:44.000Z"
+  },
+  {
+      "name": "Access Bank (Diamond)",
+      "slug": "access-bank-diamond",
+      "code": "063",
+      "longcode": "063150162",
+      "gateway": "emandate",
+      "pay_with_bank": false,
+      "active": true,
+      "is_deleted": null,
+      "country": "Nigeria",
+      "currency": "NGN",
+      "type": "nuban",
+      "id": 3,
+      "createdAt": "2016-07-14T10:04:29.000Z",
+      "updatedAt": "2020-02-18T08:06:48.000Z"
+    },
+  ]
+  }
+}
+```
+
+> Errors
+
+* 400 - Error obtaining banks list
+* 401 - Failed authentication. Authstring invalid or not found in request body
+* 500 - Backend service error
+
+
+## Save Device Token
+
+To save a scout device registration token. It handles both creation of a new record and update of an existing one.
+
+> Endpoint: scout_save_device_token
+
+> Payload
+
+``` json
+{
+  "scoutRef": "+2348123456789",
+  "deviceRegistrationToken": "47b73826-e9b2-412f-b8b4-c055eeec778b",
+  "authstring": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully created new device registration token record",
+  "scoutRef": "+2348123456789",
+  "deviceRegistrationToken": "47b73826-e9b2-412f-b8b4-c055eeec778b",
+  "deviceRegistrationTokenRef": "dccfb068-de00-40a8-b033-8488430136f3"
+}
+```
+
+``` json
+{
+  "message": "Successfully updated device registration token",
+  "scoutRef": "+2348123456789",
+  "deviceRegistrationToken": "47b73826-e9b2-412f-b8b4-c055eeec778b",
+  "deviceRegistrationTokenRef": "dccfb068-de00-40a8-b033-8488430136f3"
+}
+```
+
+> Errors
+
+* 400 - Missing parameter scoutRef, deviceRegistrationToken
+* 401 - Failed authentication. Authstring invalid or not found in request body
+* 403 - Only POST requests are allowed
+* 500 - Error creating new device registration token record || Error updating existing device registration token record || Error fetching token record
+
+
+# Dashboard
+
+These are endpoints called by v2.0 dashbboard components. 
+
+## Add Campaign
+
+Add a new campaign
+
+> Endpoint: versus_v2_add_campaign
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "description": "Let’s get you started with a simple demographics survey! This will help us send you surveys that are more appropriate for you.",
+  "endDate": 2571212464693,
+  "startDate": 1546300800,
+  "campaignName": "Demographics Survey",
+  "isDemographicSurvey": true,
+  "campaignRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81",
+  "country": "NG",
+  "stateOrRegion": "Lagos",
+  "endAge": 65,
+  "startAge": 16,
+  "gender": "female",
+  "numberOfRespondents": 500
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully added new client campaign",
+  "campaignRef": "47b73826-e9b2-412f-b8b4-c055eeec778b"
+}
+```
+
+> Errors
+
+* 401 - User is not authorized to make this request || Error authenticating user
+* 402 - Insufficient versus credit balance
+* 403 - Missing required parameters
+* 404 - Client does not exist
+* 500 - Backend service error
+
+## Add Client
+
+Add a new client on signup
+
+> Endpoint: versus_v2_add_client
+
+> Payload
+
+``` json
+{
+  "email": "abc@def.ghi",
+  "firstName": "Xavier",
+  "lastName": "Stan",
+  "organizationName": "Enterfive",
+  "OrganizationSector": "Software and Internet",
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully added new client",
+  "clientRef": "47b73826-e9b2-412f-b8b4-c055eeec778b"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 404 - Client does not exist
+* 409 - Email already exists
+* 500 - Backend service error
+
+## Add Question
+
+Add a new campaign question
+
+> Endpoint: versus_v2_add_question
+
+> Payload
+
+``` json
+{
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "question": "Which snack do you like best?",
+  "optionsType": "multiplechoice",
+  "optionsList": [
+    {"text": "Biscuits"},
+    {"text": "Chocolate"},
+    {"text": "Groundnuts"}
+  ],
+  "campaignRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully added new question",
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 402 - Insufficient versus credit balance
+* 404 - Campaign does not exist
+* 500 - Backend service error
+
+## Confirm Team Member
+
+Confirm a new team member who is onboarding and creating a profile 
+
+> Endpoint: versus_v2_confirm_team_member
+
+> Payload
+
+``` json
+{
+  "email": "xavi@stan.dev",
+  "token": "bfbbc055eeec778b",
+  "firstName": "Xavier",
+  "lastName": "Stan",
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully confirmed team"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - Invalid team token
+* 402 - Insufficient versus credit balance
+* 404 - Team not found
+* 500 - Backend service error
+
+## Edit Campaign
+
+Update a campaign
+
+> Endpoint: versus_v2_edit_campaign
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "campaignRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully updated client campaign",
+  "campaignRef": "47b73826-e9b2-412f-b8b4-c055eeec778b"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 404 - Client does not exist
+* 500 - Backend service error
+
+## Edit Client
+
+Update client data
+
+> Endpoint: versus_v2_edit_client
+
+> Payload
+
+``` json
+{
+  "email": "xavier@stan.dev",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "clientData": {
+    "logoURL": "https://clientlogo.png"
+  }
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully updated client data"
+}
+```
+
+> Errors
+
+* 401 - Team member does not have edit capability || Error authenticating user
+* 402 - Insufficient versus credit balance
+* 403 - Missing required parameters
+* 404 - Team not found || Client does not exist
+* 500 - Backend service error
+
+## Get All Campaign Data **
+
+Get all campaign-related data
+
+** To be deprecated soon
+
+> Endpoint: versus_v2_get_all_campaign_data
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "campaignRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained all campaign data",
+  "campaign": {
+    "campaignRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81",
+  },
+  "questions": [],
+  "reponses": [],
+  "respondents": []
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 404 - Campaign does not exist
+* 500 - Backend service error
+
+## Get All Surveys **
+
+Get all surveys
+
+** To be deprecated soon
+
+> Endpoint: versus_v2_add_campaign
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained all campaigns",
+  "campaigns": []
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 404 - Client does not exist
+* 500 - Backend service error
+
+## Get Campaign **
+
+Get campaign data
+
+** To be deprecated soon
+
+> Endpoint: versus_v2_get_campaign
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "campaignRef": "a0ad177c-a6d0-44a4-8662-7f2851093b81"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained campaign data",
+  "campaign": {},
+  "questionsData": [],
+  "responsesData": []
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 404 - Campaign does not exist
+* 500 - Backend service error
+
+## Get Campaigns **
+
+Get all campaigns
+
+** To be deprecated soon
+
+> Endpoint: versus_v2_get_campaigns
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained campaigns data",
+  "campaign": [],
+  "questionsData": [],
+  "responsesData": []
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Chart Data
+
+Get processed chart data and labels
+
+> Endpoint: versus_v2_get_chart_data
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "period": "today",
+  "sources": {
+    "news": [],
+    "others": [],
+    "socialmedia": []
+  }
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained chart data",
+  "chartData": {
+    "labels": [],
+    "mentions": [],
+    "positive": [],
+    "negative": [],
+    "neutral": []
+  }
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Client
+
+Get client data
+
+> Endpoint: versus_v2_get_client
+
+> Payload
+
+``` json
+{
+  "email": "xavier@stan.dev",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained client",
+  "client": {},
+  "team": {}
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 404 - Client or Team does not exist
+* 500 - Backend service error
+
+## Get Filtered Mentions
+
+Get mentions for specific set of filters
+
+> Endpoint: versus_v2_get_filtered_mentions
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "period": "today"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained mentions",
+  "classifiedNewsMentions": {
+    "positiveMentions": [],
+    "negativeMentions": []
+  },
+  "classifiedOthersMentions": {
+    "positiveMentions": [],
+    "negativeMentions": []
+  },
+  "classifiedTwitterMentions": {
+    "positiveMentions": [],
+    "negativeMentions": []
+  }
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Mentions Summary
+
+Get a summary of mentions distribution for a period
+
+> Endpoint: versus_v2_get_mentions_summary
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "period": "last 30 days",
+  "sentiment": "positive",
+  "sources": {
+    "categories": ["news", "others", "socialmedia"],
+    "news": [],
+    "others": [],
+    "socialmedia": []
+  }
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained mentions summary",
+  "sentiment": "positive",
+  "sources": {},
+  "total": 90,
+  "news": 20,
+  "tweets": 60,
+  "others": 10,
+  "percentagePositive": 100,
+  "percentageNegative": 0,
+  "percentageNeutral": 0
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Most Popular Mentions
+
+Obtain most popular mentions
+
+> Endpoint: versus_v2_get_most_popular_mentions
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "period": "last 7 days"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained most popular mentions",
+  "popularMentions": {
+    "positive": [],
+    "negative": []
+  }
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 404 - Client does not exist
+* 500 - Backend service error
+
+## Get Newsfeed
+
+Get social media and news mentions details for newsfeed
+
+> Endpoint: versus_v2_get_newsfeed
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "period": "today",
+  "sentiment": "negative",
+  "sources": {
+    "news": [],
+    "others": [],
+    "socialmedia": []
+  }
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained newsfeed",
+  "newsfeed": []
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get News Mentions Sources
+
+Obtain sources of news mentions
+
+> Endpoint: versus_v2_get_news_mentions_sources
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "period": "today",
+  "sentiment": "positive"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained news mentions sources",
+  "totalSources": 10,
+  "sources": []
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Others Mentions Sources
+
+Obtain sources of other mentions
+
+> Endpoint: versus_v2_get_others_mentions_sources
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "period": "today",
+  "sentiment": "positive"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained others mentions sources",
+  "totalSources": 10,
+  "sources": []
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Socialmedia Mentions Sources
+
+Obtain sources of social media mentions
+
+> Endpoint: versus_v2_get_socialmedia_mentions_sources
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "period": "today",
+  "sentiment": "positive"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained socialmedia mentions sources",
+  "totalTwitterMentions": 20
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Offboard Client
+
+Obtain details of client that has not yet onboarded
+
+> Endpoint: versus_v2_get_offboard_client
+
+> Payload
+
+``` json
+{
+  "onboardingToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained client",
+  "client": {}
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 404 - Client does not exist
+* 500 - Backend service error
+
+## Get Team Members
+
+Get client team members 
+
+> Endpoint: versus_v2_get_team_members
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained team members",
+  "teamMembers": [
+    {
+      "email": "deji@enterfive.com",
+      "canEdit": false,
+      "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+      "accepted": true
+    }
+  ]
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 404 - Team does not exist
+* 500 - Backend service error
+
+## Get Top Influencers
+
+Obtain a list of top influencers
+
+> Endpoint: versus_v2_get_top_influencers
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "period": "today"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained top influencers",
+  "topInfluencers": {
+    "positive": [],
+    "negative": []
+  }
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Total Questions
+
+Get a count of total questions for a client 
+
+> Endpoint: versus_v2_get_total_questions
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained total questions",
+  "totalQuestions": 320
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Total Responses
+
+Get a count of total responses for a client 
+
+> Endpoint: versus_v2_get_total_responses
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained total responses",
+  "totalQuestions": 320
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Total Survey Questions
+
+Get a count of total survey questions for each campaign
+
+> Endpoint: versus_v2_get_total_survey_questions
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "campaignRef": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained total survey questions",
+  "totalSurveyQuestions": 6
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Total Survey Responses
+
+Get a count of total survey responses for each campaign
+
+> Endpoint: versus_v2_get_total_survey_responses
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "campaignRef": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained total survey responses",
+  "totalSurveyResponses": 6
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Total Surveys
+
+Obtain a count of all the surveys for a client
+
+> Endpoint: versus_v2_get_total_surveys
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained total surveys data",
+  "totalSurveys": 14
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Launch campaign
+
+CHange the status pf a campaign from draft to live
+
+> Endpoint: versus_v2_launch_campaign
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "campaignRef": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully launched client campaign",
+  "campaignRef": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Mark Irrelevant Mentions
+
+Register a mention as irrlevant and notify project team
+
+> Endpoint: versus_v2_mark_irrelevant_mention
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "mention": {},
+  "brandName": 
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully sent email"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Onboard Client
+
+Onboard client
+
+> Endpoint: versus_v2_onboard_client
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "officeAddress": "35 Oju Omega Avenue, Ikoyi, Lagos",
+  "onboardingToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "brandName": "Enterfive",
+  "otherBrandNames": "e5",
+  "responseEmails": "pr@e5.com, hr@e5.com",
+  "comparisonBrands": [],
+  "teamMembers": [],
+  "filterProfanity": true
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully onboarded client",
+  "clientRef": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - Client is not approved for onboarding
+* 500 - Backend service error
+
+## Respond To Mention
+
+Notify client designated responder of a mention they should act on
+
+> Endpoint: versus_v2_respond_to_mention
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "mentionUrl": "https://twitter.com/user/234455/status/098734",
+  "brandName": "Enterfive",
+  "emailAddress": "pr@e5.co"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully sent email"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Retag Mention
+
+Register a mention which sentiment is to be retagged and notify project team
+
+> Endpoint: versus_v2_retag_mention
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a",
+  "mention": {},
+  "brandName": "e5",
+  "retaggedSentiment": "neutral"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully sent email"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Get Versus Credits
+
+Obtain client's current value of versus credit
+
+> Endpoint: versus_v2_get_versus_credits
+
+> Payload
+
+``` json
+{
+  "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+  "uid": "bfbbc055eeec778b",
+  "idToken": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a.13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained client versus credits",
+  "versusCredits": 5500
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - User is not authorized to make this request || Error authenticating user
+* 500 - Backend service error
+
+## Verify Signup Access
+
+Validate tokenized signup link
+
+> Endpoint: versus_v2_verify_signup_access
+
+> Payload
+
+``` json
+{
+  "tk": "13238bee-3ac9-4c77-b3b1-c7c53f113d5a"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully verified signup"
+}
+```
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - Invalid signup token
+* 500 - Backend service error
+
+## Download Report
+
+Generates and downloads Versus pdf report based on filter parameters
+
+> Endpoint: get_pdf_report
+
+> Payload
+
+``` json
+{
+    "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+    "brandName": "The New",
+    "idToken": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImMzZjI3NjU0MmJmZmU0NWU5OGMyMGQ2MDNlYmUyYmExMTc2ZWRhMzMiLCJ0eXAiOiJKV1QifQ.eyJuYW1lIjoiRGVqaSBJYnJhaGltIiwiaXNzIjoiaHR0cHM6Ly9zZWN1cmV0b2tlbi5nb29nbGUuY29tL2NvbG9ycy0yMWNiYyIsImF1ZCI6ImNvbG9ycy0yMWNiYyIsImF1dGhfdGltZSI6MTU5Mjk3OTk5NiwidXNlcl9pZCI6ImRLOElKNUc5WjFQZkg4RW5jbGN0NWx1MHZJazEiLCJzdWIiOiJkSzhJSjVHOVoxUGZIOEVuY2xjdDVsdTB2SWsxIiwiaWF0IjoxNTkyOTc5OTk2LCJleHAiOjE1OTI5ODM1OTYsImVtYWlsIjoiZGVqaS5hLmlicmFoaW1AZ21haWwuY29tIiwiZW1haWxfdmVyaWZpZWQiOmZhbHNlLCJmaXJlYmFzZSI6eyJpZGVudGl0aWVzIjp7ImVtYWlsIjpbImRlamkuYS5pYnJhaGltQGdtYWlsLmNvbSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBhc3N3b3JkIn19.qTcj7_wouzdZCECKEbkVs_wreCenMpsPhezZcQJcnSL9w0cL3cVu0pJNWEWbKIRxdz7FsEBNkB8p6eQ52mQLnfsVFbLBzNnMBSOZgyOVtgMk46BhCzxWYINgVaLl7hkShf4iD4Q73IEIvtKMN7osFFPYpnn2qCKSUyymvDHyJEx-jhh9zbl6BqDtONvm-Jq-OTAMxtYl7SfE8_vJjg0ndPGhHdDz12pqwpCBPF06oz5HV5U0C53bscpRe1hxP33gqCfyvsN_SWUOPsaESMcaQv_LcDjO29_oDINl-_P83yTaTsTdNwKdFOf4gn71r98SgEVPwhhvjcdwXvGNIWnZQg",
+    "period": "today",
+    "sentiment": "any sentiment",
+    "sources": {
+        "categories": [],
+        "socialmedia": [],
+        "news": [],
+        "others": []
+    },
+    "uid": "dK8IJ5G9Z1PfH8Enclct5lu0vIk1"
+}
+```
+## Download Listen Report
+
+Generates and downloads Versus pdf report based on filter parameters
+
+> Endpoint: versus_v2_get_pdf_report
+
+> Payload
+
+``` json
+{
+    "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+    "brandName": "The New",
+    "idToken": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImMzZjI3NjU0MmJmZmU0NWU5OGMyMGQ2MDNlYmUyYmExMTc2ZWRhMzMiLCJ0eXAiOiJKV1QifQ.eyJuYW1lIjoiRGVqaSBJYnJhaGltIiwiaXNzIjoiaHR0cHM6Ly9zZWN1cmV0b2tlbi5nb29nbGUuY29tL2NvbG9ycy0yMWNiYyIsImF1ZCI6ImNvbG9ycy0yMWNiYyIsImF1dGhfdGltZSI6MTU5Mjk3OTk5NiwidXNlcl9pZCI6ImRLOElKNUc5WjFQZkg4RW5jbGN0NWx1MHZJazEiLCJzdWIiOiJkSzhJSjVHOVoxUGZIOEVuY2xjdDVsdTB2SWsxIiwiaWF0IjoxNTkyOTc5OTk2LCJleHAiOjE1OTI5ODM1OTYsImVtYWlsIjoiZGVqaS5hLmlicmFoaW1AZ21haWwuY29tIiwiZW1haWxfdmVyaWZpZWQiOmZhbHNlLCJmaXJlYmFzZSI6eyJpZGVudGl0aWVzIjp7ImVtYWlsIjpbImRlamkuYS5pYnJhaGltQGdtYWlsLmNvbSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBhc3N3b3JkIn19.qTcj7_wouzdZCECKEbkVs_wreCenMpsPhezZcQJcnSL9w0cL3cVu0pJNWEWbKIRxdz7FsEBNkB8p6eQ52mQLnfsVFbLBzNnMBSOZgyOVtgMk46BhCzxWYINgVaLl7hkShf4iD4Q73IEIvtKMN7osFFPYpnn2qCKSUyymvDHyJEx-jhh9zbl6BqDtONvm-Jq-OTAMxtYl7SfE8_vJjg0ndPGhHdDz12pqwpCBPF06oz5HV5U0C53bscpRe1hxP33gqCfyvsN_SWUOPsaESMcaQv_LcDjO29_oDINl-_P83yTaTsTdNwKdFOf4gn71r98SgEVPwhhvjcdwXvGNIWnZQg",
+    "period": "today",
+    "sentiment": "any sentiment",
+    "sources": {
+        "categories": [],
+        "socialmedia": [],
+        "news": [],
+        "others": []
+    },
+    "uid": "dK8IJ5G9Z1PfH8Enclct5lu0vIk1"
+}
+```
+
+> Response: Returns Pdf file for Download
+
+
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - Invalid signup token
+* 500 - Backend service error
+
+## Download Comparison Report
+
+Generates and downloads Versus comparison pdf report based on filter parameters
+
+> Endpoint: versus_v2_get_comparison_pdf
+
+> Payload
+
+``` json
+{
+    "clientRef": "nqaXKB0SzWN6xh7RVyzl",
+    "brandName": "The New",
+    "idToken": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImMzZjI3NjU0MmJmZmU0NWU5OGMyMGQ2MDNlYmUyYmExMTc2ZWRhMzMiLCJ0eXAiOiJKV1QifQ.eyJuYW1lIjoiRGVqaSBJYnJhaGltIiwiaXNzIjoiaHR0cHM6Ly9zZWN1cmV0b2tlbi5nb29nbGUuY29tL2NvbG9ycy0yMWNiYyIsImF1ZCI6ImNvbG9ycy0yMWNiYyIsImF1dGhfdGltZSI6MTU5Mjk3OTk5NiwidXNlcl9pZCI6ImRLOElKNUc5WjFQZkg4RW5jbGN0NWx1MHZJazEiLCJzdWIiOiJkSzhJSjVHOVoxUGZIOEVuY2xjdDVsdTB2SWsxIiwiaWF0IjoxNTkyOTc5OTk2LCJleHAiOjE1OTI5ODM1OTYsImVtYWlsIjoiZGVqaS5hLmlicmFoaW1AZ21haWwuY29tIiwiZW1haWxfdmVyaWZpZWQiOmZhbHNlLCJmaXJlYmFzZSI6eyJpZGVudGl0aWVzIjp7ImVtYWlsIjpbImRlamkuYS5pYnJhaGltQGdtYWlsLmNvbSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBhc3N3b3JkIn19.qTcj7_wouzdZCECKEbkVs_wreCenMpsPhezZcQJcnSL9w0cL3cVu0pJNWEWbKIRxdz7FsEBNkB8p6eQ52mQLnfsVFbLBzNnMBSOZgyOVtgMk46BhCzxWYINgVaLl7hkShf4iD4Q73IEIvtKMN7osFFPYpnn2qCKSUyymvDHyJEx-jhh9zbl6BqDtONvm-Jq-OTAMxtYl7SfE8_vJjg0ndPGhHdDz12pqwpCBPF06oz5HV5U0C53bscpRe1hxP33gqCfyvsN_SWUOPsaESMcaQv_LcDjO29_oDINl-_P83yTaTsTdNwKdFOf4gn71r98SgEVPwhhvjcdwXvGNIWnZQg",
+    "period": "lastYear",
+    "sentiment": "any sentiment",
+    "sources": {
+        "categories": [],
+        "socialmedia": [],
+        "news": [],
+        "others": []
+    },
+    "uid": "dK8IJ5G9Z1PfH8Enclct5lu0vIk1",
+    "brands": ["2a304e66-2392-4b25-bd84-f5b7cc6d6aa5", "9da210aa-1033-49ce-aff8-b451b6bece85"]
+}
+```
+
+> Response: Returns Pdf file for Download
+
+
+> Errors
+
+* 400 - Missing required parameters
+* 401 - Invalid signup token
+* 500 - Backend service error
+
+## Get Subscription Plan
+
+Obtain details of a subscription plan
+
+> Endpoint: versus_v2_get_subscription_plan
+
+> Payload
+
+``` json
+{
+  "subscriptionPlanRef": "081d4b17-a1f3-4600-920f-6f46d3919873"
+}
+```
+
+> Response
+
+``` json
+{
+  "message": "Successfully obtained subscription plan",
+  "subscriptionPlan": {
+    "countriesAllowed": 12,
+    "mentionsAllowed": 100000,
+    "subscriptionPlanName": "Max",
+    "languagesAllowed": 1,
+    "subscriptionPlanRef": "081d4b17-a1f3-4600-920f-6f46d3919873"
+  }
+}
+```
+
+## Get Total Requests
+Get total number of requests for a client.
+
+**Endpoint** versus_v2_get_total_requests
+
+> Payload
+
+``` json
+{
+  "clientRef": "12345",
+  "uid": "6789",
+  "idToken": "101112"
+}
+```
+
+> Response
+
+``` json
+{
+  "message":"Successfully obtained total number of requests",
+  "totalNumberOfRequests": 7
+}
+```
+
+**Errors**
+
+* 400 - Missing parameter | Invalid param ... Should be of type ...
+* 401 - User is not authorized to make this request | Error authenticating user
+* 403 - Only POST requests are allowed | Unauthorized request
+* 404 - Team does not exist for client | Multimedia requests do not exist
+* 500 - Error obtaining multimedia requests | Error obtaining client team for authorization
+
+
+## Get Total Client Request Respondents
+Get total number of client request respondents.
+
+**Endpoint** versus_v2_get_total_client_request_respondents
+
+> Payload
+
+``` json
+{
+  "clientRef": "12345",
+  "uid": "6789",
+  "idToken": "101112"
+}
+```
+
+> Response
+
+``` json
+{
+  "message":"Successfully obtained total number of request respondents",
+  "totalNumberOfClientRequestRespondents": 7
+}
+```
+
+**Errors**
+
+* 400 - Missing parameter | Invalid param ... Should be of type ...
+* 401 - User is not authorized to make this request | Error authenticating user
+* 403 - Only POST requests are allowed | Unauthorized request
+* 404 - Team does not exist for client | Multimedia requests do not exist
+* 500 - Error obtaining total number of client request responses | Error obtaining client team for authorization
+
+
+##  Get Requests
+Get a list of requests belonging to a client
+
+> Endpoint: versus_v2_get_requests 
+
+> Payload
+
+``` python
+{
+  "clientRef": "12345",
+  "uid": "6789",
+  "idToken": "101112"
+}
+```
+
+> Response
+
+``` python
+{
+  "message":"Successfully obtained requests",
+  [
+    {
+       "clientRef": "12345",
+       "clientName": "The Enterprise",
+       "requestName": "Footage of the Lekki Protest",
+       "description": "Let’s get you started with a simple photo request.",
+       "requestRef": "001a0ad177c-a6d0-44a4-8662-7f2851093b81",
+       "country": "NG",
+       "stateOrRegion": "Lagos",
+       "endAge": 65,
+       "startAge": 16,
+       "gender": "female",
+       "numberOfRespondents": 500,
+       "mediaType": "audio",
+       "status": "live",
+       "created": "Thu Nov 12 2020 14:20:50 GMT+0100 (West Africa Standard Time)",
+    }
+    .
+    .
+  ]
+}
+```
+
+## Get Total Request Respondents
+
+Get total number of respondents for a request.
+
+**Endpoint** versus_v2_get_total_request_respondents
+
+> Payload
+
+``` json
+{
+  "clientRef": "12345",
+  "requestRef": "12345",
+  "uid": "6789",
+  "idToken": "101112"
+}
+
+```
+
+> Response
+
+``` json
+{
+  "message":"Successfully obtained total number of request respondents",
+  "totalNumberOfRequestRespondents": 7
+}
+```
+
+**Errors**
+
+* 400 - Missing parameter | Invalid param ... Should be of type ...
+* 401 - User is not authorized to make this request | Error authenticating user
+* 403 - Only POST requests are allowed | Unauthorized request
+* 404 - Team does not exist for client | Multimedia requests do not exist
+* 500 - Error obtaining total number of request respondents | Error obtaining client team for authorization
+
+##  Create Request
+Create a new multimedia request.
+
+> Endpoint: versus_v2_create_new_request
+
+> Payload
+
+``` json
+{
+  "clientRef": "12345",
+  "clientName": "The enterprise",
+  "uid": "6789",
+  "idToken": "101112",
+  "requestName": "Footage of the Lekki Protest",
+  "description": "Let’s get you started with a simple photo request.",
+  "country": "NG",
+  "stateOrRegion": "Lagos",
+  "endAge": 65,
+  "startAge": 16,
+  "gender": "female",
+  "numberOfRespondents": 500,
+  "mediaType": "image"
+}
+
+```
+
+> Response
+
+``` json
+{
+  "message":"Successfully created new request",
+  "requestRef": "1234567890-09876543234567890-0987654"
+}
+```
+
+**Errors**
+
+* 400 - Missing parameter clientRef, clientName, requestName, etc | Invalid param description. Should be type string
+* 401 - User is not authorized to make this request | Error authenticating user
+* 403 - Only POST requests are allowed
+* 500 - Error creating new request
+
+##  Get Request Responses
+
+Get a list of responses for a request.
+
+**Endpoint** versus_v2_get_request_responses 
+
+> Sample payload
+
+``` json
+{
+  "clientRef": "12345",
+  "requestRef": "12345",
+  "uid": "6789",
+  "idToken": "101112"
+}
+
+```
+
+> Sample response
+
+``` json
+{
+  "message":"Successfully obtained request responses",
+    "responses": [
+    {
+      "clientRef": "12345",
+      "requestRef": "12345",
+      "scoutRef": "+2349484757484",
+      "mediaUrls":["https://google.api.com/235617"],
+      "created": "Thu Nov 12 2020 14:20:50 GMT+0100 (West Africa Standard Time)",
+      "mediaType":"audio"
+    }
+  ]
+}
+```
+
+**Errors**
+
+* 400 - Missing parameter | Invalid param ... Should be of type ...
+* 401 - User is not authorized to make this request | Error authenticating user
+* 403 - Only POST requests are allowed | Unauthorized request
+* 404 - Team does not exist for client | Multimedia requests do not exist
+* 500 - Error obtaining request responses | Error obtaining client team for authorization
+
+## Approve Request Response
+
+**Endpoint**
+
+versus_v2_approve_request_response
+
+> Sample payload
+
+```json
+{
+  "clientRef": "12345",
+  "requestRef": "123456",
+  "responseRef": "123456",
+  "uid": "6789",
+  "idToken": "101112"
+}
+```
+
+> Sample response
+
+```json
+{
+  "message":"Successfully approved request response",
+  "responseRef": "12345"
+}
+```
+
+## Reject Request Response.
+
+**Endpoint** 
+
+versus_v2_reject_request_response
+
+> Sample payload
+
+```json
+{
+  "clientRef": "12345",
+  "requestRef": "123456",
+  "responseRef": "78900",
+  "reasonForRejection": ["Wrong subject matter", "Poor quality", "Inapropriate content"],
+  "optionalMessage": "You are not a very serious scout. Why are you running?",
+  "uid": "6789",
+  "idToken": "101112"
+}
+```
+
+> Sample response
+
+```json
+{
+  "message":"Successfully rejected request response",
+  "responseRef": "78900"
+}
+```
+
+## Batch Approve Request Responses.
+
+> Endpoint: versus_v2_reject_request_response
+
+> Payload
+
+``` python
+{
+  "clientRef": "12345",
+  "requestRef": "123456",
+  "responseRefs": ["123456", "789081", "213634", "234879"],
+  "uid": "6789",
+  "idToken": "101112"
+}
+
+
+```
+> Response
+
+``` python
+{
+  "message":"Successfully batch-approved request responses",
+  "responseRefs": ["123456", "789081", "213634", "234879"],
+}
+```
+# Share Request Responses.
+
+> Endpoint: versus_v2_share_request_responses
+
+> Payload
+
+``` python
+{
+  "clientRef": "12345",
+  "requestRef": "1234566",
+  "uid": "6789",
+  "idToken": "101112"
+}
+
+
+```
+> Response
+
+``` python
+{
+  "message":"Successfully obtained responses zip url for sharing",
+  "requestResponsesZipUrl": "https://all-the-responses.zip"
+}
+```
+
+# Download Request Responses..
+
+> Endpoint: versus_v2_download_request_responses
+
+> Payload
+
+``` python
+{
+  "clientRef": "12345",
+  "requestRef": "1234566",
+  "uid": "6789",
+  "idToken": "101112"
+}
+
+
+```
+> Response
+
+``` python
+{
+  
+}
+```
+
+##  Get Requests Responses
+Get a list of responses for a request.
+
+> Endpoint: versus_v2_get_request_responses 
+
+> Payload
+
+``` python
+{
+  "clientRef": "12345",
+  "requestRef": "12345",
+  "uid": "6789",
+  "idToken": "101112"
+}
+
+```
+
+> Response
+
+``` python
+{
+  "message":"Successfully obtained request",
+  "request": {
+       "clientRef": "12345",
+       "clientName": "The Enterprise",
+       "requestName": "Footage of the Lekki Protest",
+       "description": "Let’s get you started with a simple photo request.",
+       "requestRef": "001a0ad177c-a6d0-44a4-8662-7f2851093b81",
+       "country": "NG",
+       "stateOrRegion": "Lagos",
+       "endAge": 65,
+       "startAge": 16,
+       "gender": "female",
+       "numberOfRespondents": 500,
+       "mediaType": "audio",
+       "status": "live",
+       "created": "Thu Nov 12 2020 14:20:50 GMT+0100 (West Africa Standard Time)",
+  }
+}
+```
+
+> Errors
+
+* 400 - Missing parameter subscriptionPlanRef
+* 403 - Only POST requests are allowed
+* 500 - Backend service error
+
+
+## Pause Request If Capped
+
+Pause multimedia request when allotment is reached.
+
+**Endpoint** versus_v2_pause_request_if_capped
+
+**Method** POST
+
+> Sample payload
+```json
+{
+  "requestRef": "1234567890987654321"
+}
+```
+
+> Sample response
+```json
+{ 
+  "message": "Successfully paused client multimedia request",
+  "requestRef": "123567890987654321"
+}
+```
+
+**Errors**
+
+* 400 - Only POST requests are allowed | Missing parameter requestRef
+* 404 - Request does not exist
+* 500 - Error updating request status | Error obtaining number of request respondents
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..c419263
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1 @@
+theme: jekyll-theme-cayman
\ No newline at end of file
diff --git a/clients.html b/clients.html
new file mode 100644
index 0000000..6be68c1
--- /dev/null
+++ b/clients.html
@@ -0,0 +1,59 @@
+
+
+
+  
+  
+  
+
+  Enterfive Docs - Clients
+
+  
+  
+  
+  
+
+  
+  
+  
+  
+
+  
+  
+
+
+
+  
+
+  
+ +
+
+ + + diff --git a/dashboard.html b/dashboard.html new file mode 100644 index 0000000..9e17117 --- /dev/null +++ b/dashboard.html @@ -0,0 +1,59 @@ + + + + + + + + Enterfive Docs - Dashboard + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + diff --git a/email.html b/email.html new file mode 100644 index 0000000..65a590c --- /dev/null +++ b/email.html @@ -0,0 +1,59 @@ + + + + + + + + Enterfive Docs - Email + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + diff --git a/index.html b/index.html index 45a95e6..4149d4d 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - Flatdoc + Enterfive Docs @@ -29,33 +29,42 @@ - - + + - - +
-

Documentation is easy.

-

Flatdoc is the fastest way to create a site for your open source project.

-
Flatdoc
+

Enterfive API Documentation.

+

.

+
Powered by Flatdoc
diff --git a/powertrack.html b/powertrack.html new file mode 100644 index 0000000..e86cb1e --- /dev/null +++ b/powertrack.html @@ -0,0 +1,62 @@ + + + + + + + + Enterfive Docs - Powertrack + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + diff --git a/profanity.html b/profanity.html new file mode 100644 index 0000000..7e623bf --- /dev/null +++ b/profanity.html @@ -0,0 +1,59 @@ + + + + + + + + Enterfive Docs - Profanity + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + diff --git a/reference.html b/reference.html index a9b8523..55e757b 100644 --- a/reference.html +++ b/reference.html @@ -5,7 +5,7 @@ - Flatdoc + Enterfive Docs - API Reference @@ -28,11 +28,16 @@
diff --git a/scout.html b/scout.html new file mode 100644 index 0000000..f5f66a4 --- /dev/null +++ b/scout.html @@ -0,0 +1,59 @@ + + + + + + + + Enterfive Docs - Scouts + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + diff --git a/settings.html b/settings.html new file mode 100644 index 0000000..08a36cd --- /dev/null +++ b/settings.html @@ -0,0 +1,64 @@ + + + + + + + + + Enterfive Docs - Versus-2.0 + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + + \ No newline at end of file diff --git a/tixy.html b/tixy.html new file mode 100644 index 0000000..d17dfc4 --- /dev/null +++ b/tixy.html @@ -0,0 +1,59 @@ + + + + + + + + Enterfive Docs - Tixy + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + diff --git a/versus-2.0.html b/versus-2.0.html new file mode 100644 index 0000000..a2531f6 --- /dev/null +++ b/versus-2.0.html @@ -0,0 +1,64 @@ + + + + + + + + + Enterfive Docs - Versus-2.0 + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + + \ No newline at end of file