GET Company

GET Company

This request method lets you retrieve company account details that match the criteria.

On the Cloud, this API is available via SSL-secured HTTPS connection using the REST GET verb.

The format query string parameter controls the desired response format. Specify either XML or JSON.

/api/v2/company?format=xml/json

You may use either JSON or XML formats in your GET submission.
You indicate this by setting the ContentType HTTP header as “application/json” or “application/xml”.

If no ContentType is specified, XML format is assumed.

All XML formatted requests must specify the following XML namespace in the data source root element:
xmlns:i=”http://www.w3.org/2001/XMLSchema-instance”


Endpoints & API Explorer

NodeAPI EndpointAPI Explorer
US/api/v2/companyModel Description/Schema & Parameters

Parameters

The GET verb allows you to return all the properties of the company matching the given criteria.

The required and optional parameters for a GET call to the Task Recurring API are outlined below.

NameTypeDescriptionRequired
IdIntegerThe Company’s unique identifier
VendorIdIntegerYour unique Vendor account identifier
IntegrationKeyStringYour unique integration key

Example

Given that the API is REST-based, you can access the API directly via your web browser to test or by using Postman API Platform.

Request URL

https://eforms.mobileform.net/api/v2/company?VendorId=9XXXX&IntegrationKey=caXXXXXXXXXXXXXXXXXXXXXXXXXXX

This API endpoint implements pagination, and as such you must cater for this when you connect to our platform.

You can learn more about pagination in our API overview

Response Body

{
"Company": {
"Id": 9XXXX,
"Name": "Client ETK",
"Description": "For Enterprise Toolkit testing purpose\r\n",
"Country": "AR",
"TimeZone": "Argentina Standard Time",
"TimeZoneOffSet": -180,
"DateFormat": "dd-MMM-yyyy",
"TimeFormat": "HH:mm",
"FillRepeatRows": true,
"RerouteResetEmails": false,
"Status": "Active",
"LastUpdated": "2025-06-27T17:53:21.1862730Z",
"LastUpdatedBy": "Godoy, Vanina",
"Created": "2025-04-28T13:42:39.6632330Z",
"CreatedBy": "Godoy, Vanina",
"ActiveDevices": 0,
"BillType": "Default",
"Metadata": [],
"IntegrationKey": "caXXXXXXXXXXXXXXXXXXXXXXX",
"VendorId": 9XXXX
}
}
    • Related Articles

    • GET Companies (Company Search)

      This request method allows you to find all companies that match specified criteria. On the Cloud, this API is available via SSL-secured HTTPS connection using the REST GET verb. The format query string parameter controls the desired response format. ...
    • POST Company

      This request method lets you create a new company account through the API, specifying the company details as parameters. On the Cloud, this API is available via SSL-secured HTTPS connection using the REST GET verb. The format query string parameter ...
    • GET Usergroup

      This API returns details of the user group matching the given parameters. On the Cloud, this API is available via SSL-secured HTTPS connection using the REST GET verb. The format query string parameter controls the desired response format. Specify ...
    • GET Folder

      The GET Folder API returns details of the Folder matching the given parameters. On the Cloud, this API is available via SSL-secured HTTPS connection using the REST GET verb. The format query string parameter controls the desired response format. ...
    • GET Task

      This request method returns the task matching the given criteria. On the Cloud, this API is available via SSL-secured HTTPS connection using the REST GET verb. The format query string parameter controls the desired response format. Specify either XML ...