Apex TeleMapper Weekly Submission
curl --request GET \
--url https://tmextapi.estream.com/index.cfm/payroll/apex_weeklyimport requests
url = "https://tmextapi.estream.com/index.cfm/payroll/apex_weekly"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://tmextapi.estream.com/index.cfm/payroll/apex_weekly', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tmextapi.estream.com/index.cfm/payroll/apex_weekly",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://tmextapi.estream.com/index.cfm/payroll/apex_weekly"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://tmextapi.estream.com/index.cfm/payroll/apex_weekly")
.asString();require 'uri'
require 'net/http'
url = URI("https://tmextapi.estream.com/index.cfm/payroll/apex_weekly")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"total": 1,
"code": 200,
"success": true,
"data": [
{
"telemapperEntryId": "xxx583",
"weekEnd": "11/23/2025 12:00:00 AM",
"updatedDate": "11/25/2025 12:20:46 PM",
"ownerName": "John Doe",
"apex_locked": "",
"totalMin": "33652",
"timezoneOffset": "-6",
"officeName": "ABC INC",
"isRoadShow": "1",
"weekStart": "11/17/2025 12:00:00 AM",
"apex_submitted": "",
"officeId": "xxxx5"
}
]
}Payroll
Apex TeleMapper Weekly Submission
GET
/
payroll
/
apex_weekly
Apex TeleMapper Weekly Submission
curl --request GET \
--url https://tmextapi.estream.com/index.cfm/payroll/apex_weeklyimport requests
url = "https://tmextapi.estream.com/index.cfm/payroll/apex_weekly"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://tmextapi.estream.com/index.cfm/payroll/apex_weekly', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tmextapi.estream.com/index.cfm/payroll/apex_weekly",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://tmextapi.estream.com/index.cfm/payroll/apex_weekly"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://tmextapi.estream.com/index.cfm/payroll/apex_weekly")
.asString();require 'uri'
require 'net/http'
url = URI("https://tmextapi.estream.com/index.cfm/payroll/apex_weekly")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"total": 1,
"code": 200,
"success": true,
"data": [
{
"telemapperEntryId": "xxx583",
"weekEnd": "11/23/2025 12:00:00 AM",
"updatedDate": "11/25/2025 12:20:46 PM",
"ownerName": "John Doe",
"apex_locked": "",
"totalMin": "33652",
"timezoneOffset": "-6",
"officeName": "ABC INC",
"isRoadShow": "1",
"weekStart": "11/17/2025 12:00:00 AM",
"apex_submitted": "",
"officeId": "xxxx5"
}
]
}Was this page helpful?
⌘I
