Sha256: 1b907e8b942ff83dce1e82cc1c67fbb826bcbe46f70e98da931698b403bb172b

Contents?: true

Size: 1.9 KB

Versions: 5

Compression:

Stored size: 1.9 KB

Contents

<%

api_title = "Positive Case - 1 - API fetch all contacts corresponding to the logged user from the Data Base"

api_input = <<-eos
Example:

Authorization: Token token="103652edd6bbdc72b770d3c8cb88b18d"
GET #{request.base_url}/api/v1/contacts


Contact API fetch all synced contacts from the data base
eos

api_output = <<-eos
{
    "success": true,
    "data": [
        {
            "id": 1,
            "name": "Mohanlal",
            "account_type": "com.mollywood",
            "email": "mohanlal@gmail.com",
            "address": "",
            "contact_number_1": "87393993884",
            "contact_number_2": "9846557465",
            "contact_number_3": "",
            "contact_number_4": "",
            "profile_picture": {
                "id": "",
                "created_at": "",
                "profile_id": "",
                "image_large_path": "",
                "image_small_path": ""
            }
        },
        {
            "id": 2,
            "name": "Mammukka",
            "account_type": "com.mollywood1",
            "email": "mammukka@gmail.com",
            "address": "",
            "contact_number_1": "808650052",
            "contact_number_2": "7488374657",
            "contact_number_3": "",
            "contact_number_4": "",
            "profile_picture": {
                "id": "",
                "created_at": "",
                "profile_id": "",
                "image_large_path": "",
                "image_small_path": ""
            }
        }
    ]
}
eos

%>

<%= render partial: "kuppayam/api/docs/example", locals: {
                                        negative_case: false,
                                        example_id: "pos_case_1",
                                        api_title: api_title,
                                        api_input: api_input,
                                        api_output: api_output 
                                      } %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
usman-0.3.28 app/views/usman/api/v1/docs/all_contacts/_pos_case_1.html.erb
usman-0.3.27 app/views/usman/api/v1/docs/all_contacts/_pos_case_1.html.erb
usman-0.3.26 app/views/usman/api/v1/docs/all_contacts/_pos_case_1.html.erb
usman-0.3.25 app/views/usman/api/v1/docs/all_contacts/_pos_case_1.html.erb
usman-0.3.24 app/views/usman/api/v1/docs/all_contacts/_pos_case_1.html.erb