Skip to main content
GET
/
v1
/
companies
/
{id}
Get company by id
curl --request GET \
  --url https://api.paytsoftware.com/v1/companies/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "trial_ends_on": "<string>",
  "trial": true
}

Authorizations

Authorization
string
header
required

OAuth2 access token or static API token. See Authorization for how to obtain one.

Path Parameters

id
string
required

Company identifier

Response

Company

CustomerApi_V1_CompanyEntity model

id
string
required

Unique identifier

name
string
required

Name

status
enum<string>
required

Status

Available options:
active,
implementation,
inactive,
deleted,
unconfirmed
trial_ends_on
string
required

The date at which the trial ends

trial
boolean
required

Whether the Company is still in the trial period.

Last modified on June 12, 2026