putSizes

Operation Id:
Methods

  • sizes Array<Object>
  • faultCode Integer
  • faultString String
  • group_id Integer
  • id String
  • name String
  • description String
  • operation String
  • lang_data Array<Object>
Examples

This function assigns the name "512GB" to the size with the id "W".

const result = await idosellRequest.putSizes
	.id("W")
	.name("512GB")
	.exec()

This function edits the details of a size with the given name, description, and operation.

const result = await idosellRequest.putSizes
	.id("W")
	.name("512GB")
	.description("512GB")
	.operation("edit")
	.exec()