Initial Screen
First screen after app opening that displays the TrustPilot review.
Screenshots
API
Trustpilot
The trustpilot api shows how to retrieve the review score.
Disclaimers (Filtered List)
The disclaimers on the information screens can be retrieved by performing a GET request to the disclaimers endpoint with a category filter.
Request
curl -X 'GET' \
'https://st.igate-test.co.uk/api/v1/disclaimers/?category=INITIAL_SCREEN' \
-H 'Authorization: Bearer abc123xyz...' \
-H 'accept: application/json'
Response
{
"count": 4,
"next": null,
"previous": null,
"results": [
{
"url": "https://st.igate-test.co.uk/api/v1/disclaimers/c95117d3-9145-46b3-bf78-29fad8ad8bba/",
"category": {
"key": "INITIAL_SCREEN",
"name": "Initial screen"
},
"order": 0,
"uuid": "c95117d3-9145-46b3-bf78-29fad8ad8bba",
"created_at": "2025-02-05T11:22:32.848458Z",
"updated_at": "2025-02-05T11:22:32.860041Z",
"text": "Prices for 1 day start from just £15"
},
{
"url": "https://st.igate-test.co.uk/api/v1/disclaimers/9fe77fb5-6968-4722-bd6f-b7b3d8397e81/",
"category": {
"key": "INITIAL_SCREEN",
"name": "Initial screen"
},
"order": 1,
"uuid": "9fe77fb5-6968-4722-bd6f-b7b3d8397e81",
"created_at": "2025-02-05T11:22:52.821910Z",
"updated_at": "2025-02-05T11:22:52.829665Z",
"text": "Choose Short Term Cover from 1 to 30 days"
},
{
"url": "https://st.igate-test.co.uk/api/v1/disclaimers/7f59055e-eb30-40cd-b0c0-56c2dedb86b7/",
"category": {
"key": "INITIAL_SCREEN",
"name": "Initial screen"
},
"order": 2,
"uuid": "7f59055e-eb30-40cd-b0c0-56c2dedb86b7",
"created_at": "2025-02-05T11:23:09.329859Z",
"updated_at": "2025-02-05T11:23:09.338389Z",
"text": "Free £100,000 Legal Cover with every policy"
},
{
"url": "https://st.igate-test.co.uk/api/v1/disclaimers/e7df5537-8429-457f-8438-9cea2147407c/",
"category": {
"key": "INITIAL_SCREEN",
"name": "Initial screen"
},
"order": 3,
"uuid": "e7df5537-8429-457f-8438-9cea2147407c",
"created_at": "2025-02-05T11:23:25.495300Z",
"updated_at": "2025-02-05T11:23:25.502808Z",
"text": "Instant comprehensive insurance"
}
]
}