Update Asset

Updating asset details

Parameters

Type

Description

assetName(Mandatory)

String(36)

Asset Name

assetIdentifier(Mandatory)

String(36)

Asset identifier

assetSerialNo(Mandatory)

String(36)

Asset serial No

initialVenue(Mandatory)

String(36)

Asset venue UUID

initialBuilding(Mandatory)

String(36)

Asset building UUID

initialFloor(Mandatory)

String(36)

Asset floorplan UUID

initialZone(Mandatory)

String(36)

Asset zone UUID

description(Mandatory)

String(36)

Asset Description

assetCriticality

String(36)

Asset Criticality

  • Critical

  • High

  • Low

assetOwner

String(36)

Asset Holder UUID

assetManager

String(36)

Asset Manager UUID

assetRemovability

String(36)

Asset Removability

  • Fixed Asset

  • Movable Asset

businessUnitUUID

String(36)

Business Unit UUID

costCenterUUID

String(36)

Cost Center UUID

departmentUUID

String(36)

Department UUID

subDepartmentUUID

String(36)

Sub Department UUID

assetCategory

String(36)

Category UUID

assetLabels

String(36)

Label UUID

PONumber

String(36)

PO Number

invoiceNumber

String(36)

Invoice Number

condition

String(36)

Asset condition

  • Excellent

  • Good

  • Bad

  • Scrap

ownershipRights

String(36)

Ownership Rights

  • Owned

  • Leased

purchaseClassification

String(36)

Purchase Classification

  • Capitalized

  • Non-capitalized

warrantyEndDate

DATE

Warranty End Date

assetValue

DECIMAL

Asset Value

assetPurchaseValue

DECIMAL

Asset purchase value

assetCurrentValue

DECIMAL

Asset Book value

assetLifeTime

INT

Asset life time

assetMake

String(36)

Asset make

skuNum

String(36)

Asset SKU number

model

String(36)

Asset Model

periodicCalibration

String(36)

Asset periodic calibration

  • Yes

  • No

periodicDateIn

INT

Asset periodic calibration months(IF calibration is YES)

purchaseDate

DATE

Asset purchase date

eolDate

DATE

Asset EOL date

serviceDate

DATE

Asset service date

depreciationCalculated

String(36)

Asset depreciation Calculated

  • Yes

  • No

estimatedSalvageValue

String(36)

Estimated salvage value

depreciationUUID

String(36)

Depreciation profile UUID

depreciationStartDate

DATE

Depreciation start date

URL Parameters:

clientUUID

assetUUID

For updating asset details

POST https://<baseurl>/v1/organization/assets/editassetTag/@clientUUID/@assetUUID

Path Parameters

Name
Type
Description

assetUUID

string

Asset UUID

clientUUID

string

Client UUID

Headers

Name
Type
Description

Authentication

string

Authentication token to track down who is emptying our stocks.

#########################################################################
## success
#########################################################################

{
    "message": "success",
    "status": 200
}

#########################################################################
## Error:Unable to save data
#########################################################################

{
	"message": "error",
	"status": 400,
	"description": "Unable to save data"
}

#########################################################################
## Duplicate Asset Serial No.
#########################################################################

{
    "message": "error",
    "status": 402,
    "description": "Error happened. Duplicate Asset  Serial No"
}


#########################################################################
## Duplicate Asset ID
#########################################################################

{
    "message": "error",
    "status": 403,
    "description": "Error happened. Duplicate Asset ID"
}

#########################################################################
## Please add Default Cost Center!
#########################################################################

{
    "message": "error",
    "status": 401,
    "description": "Please add Default Cost Center! "
}

#########################################################################
## Please enter valid data
#########################################################################

{
    "message": "error",
    "status": 405,
    "description": "Please add valid data! "
}

#########################################################################
## Please enter asset details
#########################################################################

{
    "message": "error",
    "status": 406,
    "description": "Please enter asset details"
}



Last updated