Affiliate entities

An affiliate entity is a separate legal entity that is related to another entity, often due to common ownership or control. In Sage Intacct, affiliate entities are a standard dimension based on the list of entities in your Sage Intacct company and used to simplify inter-entity transaction reporting and consolidation reporting. You can use an affiliate entity to indicate a related entity in a transaction. Adding affiliate entities to transactions enables more detailed and rich reporting.

Because affiliate entities are based on the entities in your company, the affiliate entity dimension is read-only.

List affiliate entities

get/objects/company-config/affiliate-entity

Returns a collection with a key, ID, and link for each affiliate entity. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": [
    • {
      • "key": "1",
      • "id": "1",
      • "href": "/objects/company-config/affiliate-entity/1"
      },
    • {
      • "key": "2",
      • "id": "2",
      • "href": "/objects/company-config/affiliate-entity/2"
      },
    • {
      • "key": "3",
      • "id": "3",
      • "href": "/objects/company-config/affiliate-entity/3"
      }
    ],
  • "ia::meta": {
    • "totalCount": 3,
    • "start": 1,
    • "pageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get an affiliate entity

get/objects/company-config/affiliate-entity/{key}

Returns detailed information for a specified affiliate entity.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for an affiliate entity.

Example: 25
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "key": "1",
    • "id": "1",
    • "name": "Mariposa LLC",
    • "status": "active",
    • "audit": {
      • "createdDateTime": "2016-06-28T00:00:00Z",
      • "modifiedDateTime": "2024-12-20T00:00:00Z",
      • "createdByUser": {
        },
      • "createdBy": "1",
      • "modifiedByUser": {
        },
      • "modifiedBy": "158"
      },
    • "href": "/objects/company-config/affiliate-entity/1"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}