Get Status
For checking the Verification status
GET
/verify/v1/report/{otp_id}
Authentication
AUTHORIZATIONS: Bearer Token
Request parameters
Parameter |
Value / Pattern |
Example(s) |
*otp_id |
the otp_id which was returned from Generate OTP endpoint |
8d963dbf-d655-4fe6-9157-48885a036050 |
Request
| curl --location -g --request GET 'https://api.d7networks.com/verify/v1/report/{{otp_id}}' \
--header 'Authorization: Bearer {{api_access_token}}'
|
| var axios = require('axios');
var config = {
method: 'get',
url: 'https://api.d7networks.com/verify/v1/report/{{otp_id}}',
headers: {
'Authorization': 'Bearer {{api_access_token}}'
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
|
| import requests
url = "https://api.d7networks.com/verify/v1/report/{{otp_id}}"
payload={}
headers = {
'Authorization': 'Bearer {{api_access_token}}'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
|
| <?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.d7networks.com/verify/v1/report/%7B%7Botp_id%7D%7D',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer {{api_access_token}}'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
|
| package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.d7networks.com/verify/v1/report/%7B%7Botp_id%7D%7D"
method := "GET"
client := &http.Client {
}
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Authorization", "Bearer {{api_access_token}}")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
|
| var settings = {
"url": "https://api.d7networks.com/verify/v1/report/{{otp_id}}",
"method": "GET",
"timeout": 0,
"headers": {
"Authorization": "Bearer {{api_access_token}}"
},
};
$.ajax(settings).done(function (response) {
console.log(response);
});
|
| OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("https://api.d7networks.com/verify/v1/report/{{otp_id}}")
.method("GET", body)
.addHeader("Authorization", "Bearer {{api_access_token}}")
.build();
Response response = client.newCall(request).execute();
|
| var headers = {
'Authorization': 'Bearer {{api_access_token}}'
};
var request = http.Request('GET', Uri.parse('https://api.d7networks.com/verify/v1/report/{{otp_id}}'));
request.headers.addAll(headers);
http.StreamedResponse response = await request.send();
if (response.statusCode == 200) {
print(await response.stream.bytesToString());
}
else {
print(response.reasonPhrase);
}
|
| $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("Authorization", "Bearer {{api_access_token}}")
$response = Invoke-RestMethod 'https://api.d7networks.com/verify/v1/report/{{otp_id}}' -Method 'GET' -Headers $headers
$response | ConvertTo-Json
|
| require "uri"
require "net/http"
url = URI("https://api.d7networks.com/verify/v1/report/{{otp_id}}")
https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = "Bearer {{api_access_token}}"
response = https.request(request)
puts response.read_body
|
Response
When the request is validated the status will be returned.
200 - Success
404 - Not Found
{
"detail": {
"code": "MESSAGE_LOG_NOT_EXISTS",
"message": "Given message otp id not exists in the system. Please Try Again!"
}
}
422- Validation Error
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}