Need help with your APIs? I offer API discovery, governance & evangelism services. Explore services →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Remote Timesheets API

The Timesheets API from Remote — 6 operation(s) for timesheets.

Remote Timesheets API is one of 101 APIs that Remote publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include Timesheets. The published artifact set on APIs.io includes an OpenAPI specification, API documentation, and an API reference.

This API exposes 6 operations across 6 paths, and defines 33 schemas. It is described by OpenAPI 3.0.0, at version 0.1.0.

Requests are made against 2 base URLs: https://gateway.remote.com/, https://gateway.remote-sandbox.com/.

6 operations 6 paths 33 schemas 3 GET3 POST

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.0.0
API Version
0.1.0
Base URL
https://gateway.remote.com/v1/
Authentication
HTTP Basic, HTTP Bearer, HTTP Bearer, OAuth 2.0, OAuth 2.0, OAuth 2.0, OAuth 2.0
Resource Areas
1

Authentication & Security 7

Remote Timesheets API declares 7 security schemes for authenticating requests. It accepts HTTP basic authentication (BasicAuth). It accepts HTTP bearer tokens (ClientToken). It accepts HTTP bearer tokens (CustomerAPIToken). It supports OAuth 2.0 (OAuth2) using the authorizationCode and clientCredentials flows, exposing 77 scopes. It supports OAuth 2.0 (OAuth2Assertion) using the clientCredentials flow, exposing 21 scopes. It supports OAuth 2.0 (OAuth2AuthorizationCode) using the authorizationCode flow, exposing 73 scopes. It supports OAuth 2.0 (OAuth2ClientCredentials) using the clientCredentials flow, exposing 18 scopes. By default, every request must be authenticated.

  • BasicAuth — Authenticate using the basic authentication for partners. Use the CLIENTID as login and CLIENTSECRET as password.
  • ClientToken — Authenticate a partner using only the the provided clienttoken. This authentication method only allows accessing marketing endpoints.
  • CustomerAPIToken — Authenticate using API Key generated by the customer in their Integration Settings page.
  • OAuth2 — Authenticate using OAuth 2.0 protocol.
  • OAuth2Assertion — Authenticate as the employee using the urn:ietf:params:oauth:grant-type:jwt-bearer grant in the OAuth2 protocol.
  • OAuth2AuthorizationCode — Authenticate as the token authorizer using authorizationcode / refreshtoken grants in the OAuth 2.0 protocol.
  • OAuth2ClientCredentials — Authenticate using clientcredentials grant in the OAuth 2.0 protocol.

Paths & Operations 6

Across 6 paths, the API surfaces 6 operations — 3 GET, 3 POST. Each is listed below with its method, path, parameters, and response codes.

Timesheets 6
GET
/v1/timesheets/{id}
Show timesheet
get_v1_timesheets_id 1 param → 200401404422
POST
/v1/contractors/employments/{employment_id}/timesheets
Create a contractor timesheet
post_v1_contractors_employments_employment_id_timesheets 1 param body → 200400401403404422
GET
/v1/employee/timesheets
List timesheets for the authenticated employee
get_v1_employee_timesheets 2 params → 200401403404
POST
/v1/timesheets/{timesheet_id}/approve
Approve timesheet
post_v1_timesheets_timesheet_id_approve 1 param → 200401404422
GET
/v1/timesheets
List timesheets
get_v1_timesheets 5 params → 200401404422
POST
/v1/timesheets/{timesheet_id}/send-back
Send back a timesheet for review or modification
post_v1_timesheets_timesheet_id_send-back 1 param body → 200401404422

Schemas 33

The contract defines 33 schemas that model the data the API accepts and returns. The most detailed are Timesheet (20 properties), TimeTracking (13 properties), ContractorTimesheet (12 properties), MinimalTimesheet (9 properties). Each schema is shown below with its type and property counts.

ParameterError
object
3 properties 3 required
MinimalTimesheet
object
A lightweight timesheet representation returned after create and approve operations. Contains basic identification and status fields but not the detailed hours…
9 properties 9 required
TimeTracking
object
A single time tracking entry within a timesheet, representing a block of work with clock-in/out times. Includes detailed breakdowns of hours by type (regular,…
13 properties 13 required
Date
string
UTC date in [ISO 8601](https://en.wikipedia.org/wiki/ISO8601) format
ContractorTimesheetResponse
object
Response returned after creating a contractor timesheet.
1 property
TimeBreakdown
object
Detailed hours breakdown for a time tracking entry, split by time of day (day vs night) and then by type of day (regular, weekend, holiday). Useful for calcula…
2 properties 2 required
SuccessResponse
object
A generic success response returned by operations that don't produce a specific resource (e.g., updates, deletes).
1 property 1 required
Timesheet
object
A timesheet represents an employee's recorded working hours for a specific date range. It contains aggregated hour totals and individual time tracking entries.…
20 properties 19 required
SentBackTimesheet
object
A timesheet that has been sent back to the employee for revision. The status will be incalibration and includes the reason provided by the reviewer.
4 properties 4 required
ContractorTimesheet
object
A contractor timesheet, returned by the contractor create endpoint. Only contains fields relevant to the contractor flow — EOR-only fields (overtime, night/wee…
12 properties 12 required
Timezone
string
[TZ identifier](https://www.iana.org/time-zones)
TypeOfDayBreakdown
object
Hours breakdown by type of day (regular working day, weekend, or public holiday) for a specific time of day (day or night).
3 properties 3 required
ListTimesheetsResponse
object
Response schema listing many timesheets
1 property
ContractorCreateTimesheetParams
object
Parameters for creating a timesheet on behalf of a contractor employment. The target employment is taken from the URL path, not the request body. Allowed timet…
3 properties 3 required
UnprocessableEntityResponse
object
UnauthorizedResponse
object
Returned when the request does not include valid authentication credentials. Ensure you are passing a valid OAuth2 access token or API token in the Authorizati…
1 property 1 required
BadRequestResponse
object
Returned when the request is malformed or contains invalid parameters. The message may be a simple string or a structured object with a code and detailed messa…
SendBackTimesheetParams
object
Parameters for sending a submitted timesheet back to the employee for revision. The timesheet status will change to incalibration and the employee will be noti…
1 property 1 required
ActionError
object
3 properties 3 required
ContractorTimesheetOverlapResponse
object
Returned when the submitted dates overlap an existing timesheet for the employment (HTTP 422). In addition to the standard errors/message fields, the response…
3 properties 3 required
HoursAndMinutes
object
A duration expressed as hours and minutes.
2 properties
ContractorCreateTimesheetUnprocessableEntityResponse
A validation error (HTTP 422). Either a standard error response, or — when the submitted dates overlap an existing timesheet — a response that additionally inc…
ForbiddenResponse
object
Returned when the authenticated user or token does not have permission to perform the requested action. Check that the token has the required OAuth2 scopes and…
1 property 1 required
NotFoundResponse
object
Returned when the requested resource does not exist or is not accessible with the current authentication credentials.
1 property
TimesheetResponse
object
Response containing a full timesheet with all hour breakdowns and time tracking entries.
1 property
TimesheetStatus
string
The current status of a timesheet in its lifecycle. - open: The timesheet is a draft and only visible to the employee. It has not been submitted yet. - submitt…
ContractorTimeTrackingParams
object
Parameters for a single time tracking entry on a contractor timesheet. Allowed type values are restricted to the contractor subset.
5 properties 4 required
UuidSlug
string
Identifier of the employment being terminated.
DateTimeIso8601
string
UTC date time in [ISO 8601][] format. [ISO 8601]: https://en.wikipedia.org/wiki/ISO8601
SentBackTimesheetResponse
object
Response returned after a timesheet has been sent back to the employee for revision.
1 property
ContractorTimeTracking
object
A single time tracking entry on a contractor timesheet.
6 properties 6 required
CountryCode
string
Country code according to ISO 3166-1 3-digit alphabetic codes.
MinimalTimesheetResponse
object
Response containing a minimal timesheet representation, returned after create and approve operations.
1 property

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

remote-timesheets-api-openapi.yml Raw ↑

Other APIs Remote publishes across the network.

Remote Address Details API
Remote Administrative Details API
Remote Background Checks API
Remote Bank Account Details API
Remote Basic Information API
Remote Benefit Offers API
Remote Benefit Offers By Employment API
Remote Benefit Renewals API
Remote Benefits API
Remote Billing Address Details API
Remote Billing API
Remote Billing Documents API