TAG LINE
TAG LINE
SMALL TITLE
Represents a business unit or corporate entity within the system. Currently limited to one business unit.
identity READ-ONLY | "identity": 21 Type: Number This is the unique numeric identifier for the Owner |
name READ-ONLY | "name": "Default Owner" Type: String User defined name for this Owner. |
tree | "tree": "1" Type: String Represents the level in which this Owner exists in the corporate hierarchy. |
fiscalYearStartingMonth | "fiscalYearStartingMonth": 1 Type: Number Represents the month in which the fiscal year begins. |
amountPrecision | "amountPrecision": 2 Type: Number Number of decimal points to round when generating charges. Maximum allowed is 11. |
largeLogo | "largeLogo": "base64encoded" Type: String Large logo to show in the menu and login screen |
smallLogo | "smallLogo": "base64encoded" Type: String Small logo to show in the menu when displayed on a smaller screen form factor such as a tablet. |
primaryColor | "primaryColor": "#000000" Type: String unused |
secondaryColor | "secondaryColor": "#0000FF" Type: String unused |
dynamicUsageClassExtensionAttributeId | "dynamicUsageClassExtensionAttributeId": 6 Type: Number Unique identifier for the associated ExtensionAttribute object. |
dynamicUsageClassExtensionAttributeName | "dynamicUsageClassExtensionAttributeName": "Sample Name" Type: String The name of the object associated with the dynamicUsageClassExtensionAttributeId property. |
defaultLocaleId | "defaultLocaleId": 8 Type: Number Unique identifier for the associated Locale object. |
defaultLocaleName | "defaultLocaleName": "Sample Name" Type: String The name of the object associated with the defaultLocaleId property. |
realTimeUsageTaxation | "realTimeUsageTaxation": true Type: Boolean Whether or not to tax usage at time of real-time rating. |
isCustomerPortalActive | "isCustomerPortalActive": true Type: Boolean Whether or not the built in Customer portal option is active and available for your customers. |
roundingMethodTypeId | "roundingMethodTypeId": 13 Type: Number Unique identifier for the associated RoundingMethodType object. |
roundingMethodTypeName | "roundingMethodTypeName": "Sample Name" Type: String The name of the object associated with the roundingMethodTypeId property. |
usageBillingGraceDays | "usageBillingGraceDays": 10 Type: Number This represents a late usage rating threshold. The threshold on how many days in the past the system will honor when usage arrives late in the system. |
The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.
PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the Owner object.
Standard PATCH objects:
DataFlow PATCH objects:
GET | Owner/ |
Retrieve all of the Owner objects. | |
Retrieve all of the Owner objects. GET Owner/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "name": "Default Owner", "tree": "1", "fiscalYearStartingMonth": "1", "amountPrecision": "2", "largeLogo": "base64encoded", "smallLogo": "base64encoded", "primaryColor": "#000000", "secondaryColor": "#0000FF", "dynamicUsageClassExtensionAttributeId": 24, "dynamicUsageClassExtensionAttributeName": "Sample Text Data", "defaultLocaleId": 21, "defaultLocaleName": "Sample Text Data", "realTimeUsageTaxation": true, "isCustomerPortalActive": true, "roundingMethodTypeId": 0, "roundingMethodTypeName": "Sample Text Data", "usageBillingGraceDays": "10" } ] } |
GET | Owner/Paged |
Retrieve all of the Owner objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints. | |
Retrieve all of the Owner objects in a paged fashion. GET Owner/Paged HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "name": "Default Owner", "tree": "1", "fiscalYearStartingMonth": "1", "amountPrecision": "2", "largeLogo": "base64encoded", "smallLogo": "base64encoded", "primaryColor": "#000000", "secondaryColor": "#0000FF", "dynamicUsageClassExtensionAttributeId": 18, "dynamicUsageClassExtensionAttributeName": "Sample Text Data", "defaultLocaleId": 3, "defaultLocaleName": "Sample Text Data", "realTimeUsageTaxation": true, "isCustomerPortalActive": true, "roundingMethodTypeId": 22, "roundingMethodTypeName": "Sample Text Data", "usageBillingGraceDays": "10" } ] } } |
GET | Owner/Paged/Detail |
Retrieve all of the Owner objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
Retrieve all of the Owner objects in a paged fashion with all object details. GET Owner/Paged/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "name": "Default Owner", "tree": "1", "fiscalYearStartingMonth": "1", "amountPrecision": "2", "largeLogo": "base64encoded", "smallLogo": "base64encoded", "primaryColor": "#000000", "secondaryColor": "#0000FF", "dynamicUsageClassExtensionAttributeId": 21, "dynamicUsageClassExtensionAttributeName": "Sample Text Data", "defaultLocaleId": 6, "defaultLocaleName": "Sample Text Data", "realTimeUsageTaxation": true, "isCustomerPortalActive": true, "roundingMethodTypeId": 6, "roundingMethodTypeName": "Sample Text Data", "usageBillingGraceDays": "10", "details": { "currentRatePlan": { "identity": 21, "name": "Sample Text Data", "displayName": "Sample Text Data", "start": "2021-04-26T15:25:27.587Z" }, "currencies": [ { "identity": 0, "name": "Sample Text Data", "code": "Sample Text Data", "symbol": "Sample Text Data", "isDefault": true } ], "customerPortalSetting": { "identity": 98, "allowPayments": true, "allowPaymentMethodCreation": true, "allowPaymentMethodUpdate": true, "allowPaymentProductCancellation": true, "largeLogo": "Sample Text Data", "smallLogo": "Sample Text Data", "primaryColor": "Sample Text Data", "secondaryColor": "Sample Text Data", "title": "Sample Text Data", "description": "Sample Text Data" }, "samlSetting": { "identity": 93, "entityIdentifier": "Sample Text Data", "federationMetadataURL": "Sample Text Data", "isActive": true, "scimToken": "Sample Text Data" } } } ] } } |
GET | Owner/{id} |
Retrieve an instance of the Owner object by its ID. | |
{id} | Unique identifier for the Owner object. |
Retrieve an instance of the Owner object by its ID. GET Owner/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "name": "Default Owner", "tree": "1", "fiscalYearStartingMonth": "1", "amountPrecision": "2", "largeLogo": "base64encoded", "smallLogo": "base64encoded", "primaryColor": "#000000", "secondaryColor": "#0000FF", "dynamicUsageClassExtensionAttributeId": 5, "dynamicUsageClassExtensionAttributeName": "Sample Text Data", "defaultLocaleId": 2, "defaultLocaleName": "Sample Text Data", "realTimeUsageTaxation": true, "isCustomerPortalActive": true, "roundingMethodTypeId": 27, "roundingMethodTypeName": "Sample Text Data", "usageBillingGraceDays": "10" } } |
GET | Owner/{id}/Detail |
Retrieve deep detail of the Owner object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the Owner object. |
Retrieve deep detail of the Owner object by its ID. GET Owner/{id}/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "name": "Default Owner", "tree": "1", "fiscalYearStartingMonth": "1", "amountPrecision": "2", "largeLogo": "base64encoded", "smallLogo": "base64encoded", "primaryColor": "#000000", "secondaryColor": "#0000FF", "dynamicUsageClassExtensionAttributeId": 27, "dynamicUsageClassExtensionAttributeName": "Sample Text Data", "defaultLocaleId": 3, "defaultLocaleName": "Sample Text Data", "realTimeUsageTaxation": true, "isCustomerPortalActive": true, "roundingMethodTypeId": 10, "roundingMethodTypeName": "Sample Text Data", "usageBillingGraceDays": "10", "details": { "currentRatePlan": { "identity": 21, "name": "Sample Text Data", "displayName": "Sample Text Data", "start": "2021-04-26T15:25:27.587Z" }, "currencies": [ { "identity": 0, "name": "Sample Text Data", "code": "Sample Text Data", "symbol": "Sample Text Data", "isDefault": true } ], "customerPortalSetting": { "identity": 98, "allowPayments": true, "allowPaymentMethodCreation": true, "allowPaymentMethodUpdate": true, "allowPaymentProductCancellation": true, "largeLogo": "Sample Text Data", "smallLogo": "Sample Text Data", "primaryColor": "Sample Text Data", "secondaryColor": "Sample Text Data", "title": "Sample Text Data", "description": "Sample Text Data" }, "samlSetting": { "identity": 93, "entityIdentifier": "Sample Text Data", "federationMetadataURL": "Sample Text Data", "isActive": true, "scimToken": "Sample Text Data" } } } } |
PATCH | Owner/{id} |
Update or Add the Owner object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array. | |
{id} | Unique identifier for the Owner object. |
Update or Add the Owner object and optionally make changes to any child objects. PATCH Owner/{id} { "details": {}, "owners": { "items": [ { "patchType": "create", "patchClientId": 1, "tree": "1", "fiscalYearStartingMonth": "1", "amountPrecision": "2", "largeLogo": "base64encoded", "smallLogo": "base64encoded", "primaryColor": "#000000", "secondaryColor": "#0000FF", "dynamicUsageClassExtensionAttributeId": 23, "defaultLocaleId": 3, "realTimeUsageTaxation": true, "isCustomerPortalActive": true, "roundingMethodTypeId": 2, "usageBillingGraceDays": "10" } ] } } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "patch", "results": { "totalCount": 1, "items": [ { "identity": 1, "action": "created", "dtoTypeKey": "owner", "instance": { "identity": 1, "name": "Default Owner", "tree": "1", "fiscalYearStartingMonth": "1", "amountPrecision": "2", "largeLogo": "base64encoded", "smallLogo": "base64encoded", "primaryColor": "#000000", "secondaryColor": "#0000FF", "dynamicUsageClassExtensionAttributeId": 9, "dynamicUsageClassExtensionAttributeName": "Sample Text Data", "defaultLocaleId": 5, "defaultLocaleName": "Sample Text Data", "realTimeUsageTaxation": true, "isCustomerPortalActive": true, "roundingMethodTypeId": 0, "roundingMethodTypeName": "Sample Text Data", "usageBillingGraceDays": "10" } } ] } } |