- PartNumberGraphQLResponse
Override properties for a feature
Notice string to override the default value
Serial number to override the default value
Vendor string to override the default value
{ "notice": "Example String", "serialNumber": "Example String", "vendorString": "Example String" }
Paginated account response
List of accounts
Pagination information
{ "accounts": [ { "__typename": "Account" } ], "pagination": { "__typename": "Pagination" } }
Paginated response carrying a list of features
List of features
Pagination information
{ "features": [ { "__typename": "FeaturesResponseDTO" } ], "pagination": { "__typename": "Pagination" } }
Paginated users response
Pagination information
List of user accounts
{ "pagination": { "__typename": "Pagination" }, "userList": [ { "__typename": "UserInfo" } ] }
Represents the pagination information
Number of records per page
Represents page number for pagination
Represents total number of records
{ "limit": 40, "page": 40, "totalCount": 40 }
Response for part number creation
List of part number creation results
{ "response": [ { "__typename": "PartNumberResultEntry" } ] }
Product details in part number response
License model associated with the product
Name of the product
Version of the product
{ "licenseModel": "Example String", "name": "Example String", "version": "Example String" }
Response object representing a part number with full details
Creation date of the part number
Description of the part number
Last modification date of the part number
Name of the part number
Product details associated with this part number
Trial availability flag
{ "createdDate": "Example String", "description": "Example String", "lastModifiedDate": "Example String", "name": "Example String", "product": { "__typename": "PartNumberProductResponseDTO" }, "trialAvailability": true }
Paginated response carrying a list of part numbers
Pagination information
List of part numbers
{ "pagination": { "__typename": "Pagination" }, "partNumbers": [ { "__typename": "PartNumberResponseDTO" } ] }
Entry in the part number creation response. Represents the result of creating a part number at a specific index.
Index of the part number in the input array. This maintains the same order as the input request. Example: 0, 1, 2
Result of the operation (success/error)
{ "index": 40, "result": { "__typename": "ResultItem" } }
Part number information for maintenance product.
Part number identifier
{ "partNumber": "Example String" }