Operation Id:
sizes/sizes/put [Official Documentaction]
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".
Loading editor...
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.
Loading editor...
const result = await idosellRequest.putSizes .id("W") .name("512GB") .description("512GB") .operation("edit") .exec();