getByDate
get prayer time by for the given date
show the prayer times for given date in the given timline of the specific location
/{Location}/{Times}/{Date}
Usage and SDK Samples
curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/muslimsalat/{Location}/{Times}/{Date}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DateApi;
import java.io.File;
import java.util.*;
public class DateApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: apieco-key
ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
apieco-key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.setApiKeyPrefix("Token");
DateApi apiInstance = new DateApi();
String location = location_example; // String | Fetch the prayer time based on the location you request with these auto values:
Times: daily
Date: today
dayligh saving: auto
method: auto based on location
array[String] times = ; // array[String] | Status values that need to be considered for filter
date date = 2013-10-20; // date |
try {
apiInstance.getByDate(location, times, date);
} catch (ApiException e) {
System.err.println("Exception when calling DateApi#getByDate");
e.printStackTrace();
}
}
}
import io.swagger.client.api.DateApi;
public class DateApiExample {
public static void main(String[] args) {
DateApi apiInstance = new DateApi();
String location = location_example; // String | Fetch the prayer time based on the location you request with these auto values:
Times: daily
Date: today
dayligh saving: auto
method: auto based on location
array[String] times = ; // array[String] | Status values that need to be considered for filter
date date = 2013-10-20; // date |
try {
apiInstance.getByDate(location, times, date);
} catch (ApiException e) {
System.err.println("Exception when calling DateApi#getByDate");
e.printStackTrace();
}
}
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];
String *location = location_example; // Fetch the prayer time based on the location you request with these auto values:
Times: daily
Date: today
dayligh saving: auto
method: auto based on location
array[String] *times = ; // Status values that need to be considered for filter
date *date = 2013-10-20; //
DateApi *apiInstance = [[DateApi alloc] init];
// get prayer time by for the given date
[apiInstance getByDateWith:location
times:times
date:date
completionHandler: ^(NSError* error) {
if (error) {
NSLog(@"Error: %@", error);
}
}];
var MuslimSalat = require('muslim_salat');
var defaultClient = MuslimSalat.ApiClient.instance;
// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"
var api = new MuslimSalat.DateApi()
var location = location_example; // {String} Fetch the prayer time based on the location you request with these auto values:
Times: daily
Date: today
dayligh saving: auto
method: auto based on location
var times = ; // {array[String]} Status values that need to be considered for filter
var date = 2013-10-20; // {date}
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
api.getByDate(location, times, date, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class getByDateExample
{
public void main()
{
// Configure API key authorization: apieco-key
Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");
var apiInstance = new DateApi();
var location = location_example; // String | Fetch the prayer time based on the location you request with these auto values:
Times: daily
Date: today
dayligh saving: auto
method: auto based on location
var times = new array[String](); // array[String] | Status values that need to be considered for filter
var date = 2013-10-20; // date |
try
{
// get prayer time by for the given date
apiInstance.getByDate(location, times, date);
}
catch (Exception e)
{
Debug.Print("Exception when calling DateApi.getByDate: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');
$api_instance = new Swagger\Client\Api\DateApi();
$location = location_example; // String | Fetch the prayer time based on the location you request with these auto values:
Times: daily
Date: today
dayligh saving: auto
method: auto based on location
$times = ; // array[String] | Status values that need to be considered for filter
$date = 2013-10-20; // date |
try {
$api_instance->getByDate($location, $times, $date);
} catch (Exception $e) {
echo 'Exception when calling DateApi->getByDate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DateApi;
# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";
my $api_instance = WWW::SwaggerClient::DateApi->new();
my $location = location_example; # String | Fetch the prayer time based on the location you request with these auto values:
Times: daily
Date: today
dayligh saving: auto
method: auto based on location
my $times = []; # array[String] | Status values that need to be considered for filter
my $date = 2013-10-20; # date |
eval {
$api_instance->getByDate(location => $location, times => $times, date => $date);
};
if ($@) {
warn "Exception when calling DateApi->getByDate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.DateApi()
location = location_example # String | Fetch the prayer time based on the location you request with these auto values:
Times: daily
Date: today
dayligh saving: auto
method: auto based on location
times = # array[String] | Status values that need to be considered for filter
date = 2013-10-20 # date |
try:
# get prayer time by for the given date
api_instance.get_by_date(location, times, date)
except ApiException as e:
print("Exception when calling DateApi->getByDate: %s\n" % e)
Parameters
Name | Description |
---|---|
Location* |
String
Fetch the prayer time based on the location you request with these auto values:
Times: daily
Date: today
dayligh saving: auto
method: auto based on location
Required
|
Times* |
array[String]
Status values that need to be considered for filter
Required
|
Date* |
date
(date)
Required
|
Name | Description |
---|---|
apieco-key |
String
|