postman.timetta.com Open in urlscan Pro
54.147.182.129  Public Scan

URL: https://postman.timetta.com/
Submission: On July 21 via automatic, source certstream-suspicious — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

 * Body
 * Headers (0)

 * Body
 * Headers (0)




Public


Documentation Settings

ENVIRONMENT
No Environment

LAYOUT
Double Column

LANGUAGE
cURL - cURL



Timetta Public API Examples
Introduction
Authentication
Users
Projects
Programs
Project Versions
Organizations
TimeSheets
Time Off Requests
Time Off Balance Entries
Expense Requests
Acts Of Acceptance
Invoices
Tasks
Accounting Periods
Custom Function & Actions
Accounting Entries
Resources
Actual Data Entries
Settings
Certificates
Reporting API
DEPRECATED


TIMETTA PUBLIC API EXAMPLES

Information about the architecture, authentication logic, and recommendations
for testing and debugging is available
in help - https://ru.help.timetta.com/article/107-public-api

Actual API metadata - https://api.timetta.com/odata/$metadata

AUTHORIZATIONBearer Token
Token


AUTHENTICATION

Authentication architecture - https://timetta.com/ru/docs/api/authentication




POSTGET ACCESS TOKEN

https://auth.timetta.com/connect/token

Create Access Token and Refresh Token.

Bodyurlencoded
client_id

external

scope

all offline_access

grant_type

password

username

{{userEmail}}

User's email

password

{{userPassword}}

User's password

Example Request
Get Access Token

curl


curl --location 'https://auth.timetta.com/connect/token' \
--data-urlencode 'client_id=external' \
--data-urlencode 'scope=all offline_access' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'username={{userEmail}}' \
--data-urlencode 'password={{userPassword}}'

Example Response
 * Body
 * Headers (0)

No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers


POSTREFRESH ACCESS TOKEN

https://auth.timetta.com/connect/token

Update Access Token using Refresh Token.

Bodyurlencoded
client_id

external

scope

all offline_access

grant_type

refresh_token

refresh_token

Refresh Token

Example Request
Refresh Access Token

curl


curl --location 'https://auth.timetta.com/connect/token' \
--data-urlencode 'client_id=external' \
--data-urlencode 'scope=all offline_access' \
--data-urlencode 'grant_type=refresh_token' \
--data-urlencode 'refresh_token='

Example Response
 * Body
 * Headers (0)

No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers
USERS

AUTHORIZATIONBearer Token
This folder is using Bearer Token from collectionTimetta Public API Examples

USER ENTITY

AUTHORIZATIONBearer Token
This folder is using Bearer Token from collectionTimetta Public API Examples