GET
/
company
Get Company Details
curl --request GET \
  --url https://api.firma.dev/functions/v1/signing-request-api/company \
  --header 'Authorization: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "account_owner": "<string>",
  "account_owner_email": "jsmith@example.com",
  "website": "<string>",
  "icon_url": "<string>",
  "credits": 1,
  "created_date": "2023-11-07T05:31:56Z",
  "updated_date": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API key for authentication. Format: 'Bearer your-api-key'

Response

200 - application/json

Company information retrieved successfully

id
string<uuid>
name
string
Maximum length: 255
account_owner
string
Maximum length: 255
account_owner_email
string<email>
website
string<uri>
icon_url
string<uri>
credits
integer
Required range: x >= 0
created_date
string<date-time>
updated_date
string<date-time>