target_id) that identifies the Member Tenant.target_id) for the sandbox environmentNote: The FieldEdge Tenant ID ( target_id) is provided separately by the FieldEdge team and is required when making authenticated API calls.
| Parameter | Description |
|---|---|
| Client ID | OAuth client identifier obtained from the Sandbox Application |
| Client Secret | OAuth client secret obtained from the Sandbox Application |
| target_id | FieldEdge Tenant ID provided by the FieldEdge team |
https://your-install-url.com/?target={customerorg_guid}&target_id={fieldedge-tenant-id}
target – Marketplace ID of the FieldEdge Marketplace Consumertarget_id – The FieldEdge Tenant ID (used for authentication)target_id and use it to request access tokens.client_idclient_secret
https://your-install-url.com/?target={customerorg_guid}&target_id={fieldedge-tenant-id}
client_idclient_secrettarget_idclient_id (from Marketplace)client_secret (from Marketplace)target_id (installation metadata → FieldEdge Tenant ID)https://fieldedge.withgobo.com/oauth/token
Content-Type: application/x-www-form-urlencoded
client_id=<your-client-id>
client_secret=<your-client-secret>
target_id=<fieldedge-tenant-id>
grant_type=client_credentials
{
"access_token": "eyJhbGciOiJSUzI1NiIsInR...",
"token_type": "Bearer",
"expires_in": 28800
}⚠️ Note: This endpoint expects application/x-www-form-urlencodedpayloads. JSON request bodies are not supported.
Authorization: Bearer <jwt-token>