{"openapi":"3.1.0","info":{"title":"Endpoints","version":"1.0.0"},"paths":{"/it/orders/{order_id}":{"get":{"operationId":"get-it-order-by-id","summary":"Retrieve an IT order","description":"Retrieve detailed information about a single IT equipment order using its unique identifier. This allows you to track the order's status, review shipping details, and see the associated product. For more info, visit [Orders](https://developer.deel.com/docs/deel-it-api#orders)\n **Token scopes**: `it-orders:read`","tags":["subpackage_orders"],"parameters":[{"name":"order_id","in":"path","description":"Unique identifier of the IT order","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"Authorization","in":"header","description":"## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/orders_getITOrderById_Response_200"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RetrieveAnItOrderRequestBadRequestError"}}}},"401":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"403":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"404":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RetrieveAnItOrderRequestInternalServerError"}}}}}}},"/it/orders":{"get":{"operationId":"get-it-orders","summary":"List IT orders","description":"Retrieve a paginated list of all IT equipment orders for the organization. This is useful for reviewing both historical and current procurement requests to track overall equipment provisioning. For more info, visit [Orders](https://developer.deel.com/docs/deel-it-api#orders).\n **Token scopes**: `it-orders:read`","tags":["subpackage_orders"],"parameters":[{"name":"cursor","in":"query","description":"Indicates where the next page of results starts, as returned in a paginated list response","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"Return a page of results with given number of records","required":false,"schema":{"type":"integer","default":20}},{"name":"Authorization","in":"header","description":"## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/orders_getITOrders_Response_200"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListItOrdersRequestBadRequestError"}}}},"401":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"403":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"404":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListItOrdersRequestInternalServerError"}}}}}}},"/it/assets/{asset_id}":{"get":{"operationId":"get-it-asset-by-id","summary":"Retrieve an IT asset","description":"Retrieve the details of a specific IT asset using its unique identifier. This allows you to check information such as the asset's model, serial number, status, and location. For more info, visit [Assets](https://developer.deel.com/docs/deel-it-api#assets).\n **Token scopes**: `it-assets:read`","tags":["subpackage_assets"],"parameters":[{"name":"asset_id","in":"path","description":"Unique identifier of the IT asset","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"Authorization","in":"header","description":"## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/assets_getITAssetById_Response_200"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RetrieveAnItAssetRequestBadRequestError"}}}},"401":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"403":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"404":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RetrieveAnItAssetRequestInternalServerError"}}}}}}},"/it/assets":{"get":{"operationId":"get-it-assets","summary":"List IT assets","description":"Retrieve a paginated list of all IT assets managed by the organization. This is useful for getting a complete overview of your equipment inventory and understanding the state of each asset. For more info, visit [Assets](https://developer.deel.com/docs/deel-it-api#assets).\n **Token scopes**: `it-assets:read`","tags":["subpackage_assets"],"parameters":[{"name":"cursor","in":"query","description":"Indicates where the next page of results starts, as returned in a paginated list response","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"Return a page of results with given number of records","required":false,"schema":{"type":"integer","default":20}},{"name":"hris_profile_id","in":"query","description":"Filter assets by assigned worker with given HRIS Profile ID","required":false,"schema":{"type":"string","format":"uuid"}},{"name":"location","in":"query","description":"Filter assets by their location","required":false,"schema":{"$ref":"#/components/schemas/ItAssetsGetParametersLocation"}},{"name":"category","in":"query","description":"Filter assets by their product category","required":false,"schema":{"$ref":"#/components/schemas/ItAssetsGetParametersCategory"}},{"name":"status","in":"query","description":"Filter assets by their status","required":false,"schema":{"$ref":"#/components/schemas/ItAssetsGetParametersStatus"}},{"name":"Authorization","in":"header","description":"## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/assets_getITAssets_Response_200"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListItAssetsRequestBadRequestError"}}}},"401":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"403":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"404":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListItAssetsRequestInternalServerError"}}}}}}},"/it/policies":{"get":{"operationId":"get-it-policies","summary":"List IT hardware policies","description":"Retrieve a list of all available IT hardware policies. These policies define the equipment that can be ordered. For more info, visit [IT policies](https://developer.deel.com/docs/deel-it-api#it-policies).\n **Token scopes**: `it-policies:read`","tags":["subpackage_policies"],"parameters":[{"name":"Authorization","in":"header","description":"## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/policies_getITPolicies_Response_200"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListItHardwarePoliciesRequestBadRequestError"}}}},"401":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"403":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"404":{"description":"Operation failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorContainer"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListItHardwarePoliciesRequestInternalServerError"}}}}}}}},"servers":[{"url":"https://api.letsdeel.com/rest/v2"},{"url":"https://api-staging.letsdeel.com/rest/v2"}],"components":{"schemas":{"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUserAddressType":{"type":"string","enum":["PII","PARTIAL","DELIVERY","COLLECTION","ENTITY","SUPPLIER","BILLING"],"description":"Type of the address","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUserAddressType"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUserAddressCountry":{"type":"string","enum":["AD","AE","AF","AG","AI","AL","AM","AN","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","IC","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","XK","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW"],"description":"Country code","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUserAddressCountry"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUserAddress":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the address"},"city":{"type":["string","null"],"description":"City name"},"type":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUserAddressType","description":"Type of the address"},"line1":{"type":["string","null"],"description":"Address line 1"},"line2":{"type":["string","null"],"description":"Address line 2"},"state":{"type":["string","null"],"description":"State code or name"},"country":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUserAddressCountry","description":"Country code"},"is_valid":{"type":"boolean","description":"Whether the address passes validation"},"post_code":{"type":["string","null"],"description":"Post code"},"phone_number":{"type":["string","null"],"description":"Phone number"},"date_of_birth":{"type":["string","null"],"format":"date","description":"Date of birth (applicable for some address types)"},"tax_id_number":{"type":["string","null"],"description":"Tax ID number (applicable for some address types)"},"passport_number":{"type":["string","null"],"description":"Passport number (applicable for some address types)"},"delivery_instructions":{"type":["string","null"],"description":"Special instructions for deliveries"}},"description":"User address details","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUserAddress"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUser":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"string","format":"email"},"description":"Array of user email addresses"},"address":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUserAddress","description":"User address details"},"last_name":{"type":"string","description":"Last name of the user"},"first_name":{"type":"string","description":"First name of the user"},"hris_profile_id":{"type":"string","format":"uuid","description":"The unique identifier of the HRIS profile of the assigned user"}},"description":"Details of the order attached user","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUser"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataStatus":{"type":"string","enum":["REQUESTED","APPROVED","DECLINED","CANCELLED"],"description":"Order status","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataStatus"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsStatus":{"type":"string","enum":["PLACED","PROCESSING","AWAITING_PAYMENT","READY_TO_SHIP","SHIPPED","COMPLETED","CANCELLED"],"description":"Status of the order item","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsStatus"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsProductCategory":{"type":"string","enum":["ADAPTER","CABLE","CHAIR","CHARGER","DESK","DESK_RISER","DESK_TIDY","DESKTOP","DOCKING_STATION","DONGLE","FOOTREST","HEADSET","KEYBOARD","LAPTOP","LAPTOP_STAND","MICE_TRACKPAD","MOBILE_DEVICE","MONITOR","MONITOR_ARM","OTHER","PRINTER","SHREDDER","STANDING_MAT","TABLET","TASK_LIGHT","WEBCAM","WIFI_RANGE_EXTENDER","WELCOME_PACK"],"description":"Product category","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsProductCategory"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsProduct":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the product"},"name":{"type":"string","description":"Product name"},"brand":{"type":"string","description":"Product brand"},"category":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsProductCategory","description":"Product category"}},"description":"Product details","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsProduct"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsAssetPriceCurrency":{"type":"string","enum":["EUR","AED","AFN","XCD","ALL","AMD","AOA","ARS","USD","AUD","AWG","AZN","BAM","BDT","XOF","BGN","BHD","BIF","BMD","SGD","BOB","BRL","BSD","BTN","BWP","BYN","BZD","CAD","CDF","XAF","CHF","NZD","CLP","CNY","COP","CRC","CUC","CVE","ANG","CZK","DJF","DOP","DZD","EGP","MAD","ERN","ETB","FJD","FKP","DKK","GBP","GEL","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","INR","IQD","IRR","ISK","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","WST","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LTL","LYD","MDL","MGA","MKD","MMK","MNT","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","XPF","NGN","NIO","NOK","NPR","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SHP","SLL","SOS","SRD","SSP","STD","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","UYU","UZS","VEF","VND","VUV","YER","ZAR","ZMW","ZWD"],"description":"Three-letter currency code for the price","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsAssetPriceCurrency"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsAssetPrice":{"type":"object","properties":{"amount":{"type":"string","description":"Amount"},"currency":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsAssetPriceCurrency","description":"Three-letter currency code for the price"}},"description":"Price of the order item","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsAssetPrice"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsStorefrontFeeCurrency":{"type":"string","enum":["EUR","AED","AFN","XCD","ALL","AMD","AOA","ARS","USD","AUD","AWG","AZN","BAM","BDT","XOF","BGN","BHD","BIF","BMD","SGD","BOB","BRL","BSD","BTN","BWP","BYN","BZD","CAD","CDF","XAF","CHF","NZD","CLP","CNY","COP","CRC","CUC","CVE","ANG","CZK","DJF","DOP","DZD","EGP","MAD","ERN","ETB","FJD","FKP","DKK","GBP","GEL","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","INR","IQD","IRR","ISK","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","WST","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LTL","LYD","MDL","MGA","MKD","MMK","MNT","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","XPF","NGN","NIO","NOK","NPR","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SHP","SLL","SOS","SRD","SSP","STD","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","UYU","UZS","VEF","VND","VUV","YER","ZAR","ZMW","ZWD"],"description":"Three-letter currency code for the price","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsStorefrontFeeCurrency"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsStorefrontFee":{"type":"object","properties":{"amount":{"type":"string","description":"Amount"},"currency":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsStorefrontFeeCurrency","description":"Three-letter currency code for the price"}},"description":"Storefront fee associated with the order item","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsStorefrontFee"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsAcquisitionType":{"type":"string","enum":["RENTAL","PURCHASE","REUSE"],"description":"Acquisition type of the order item","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsAcquisitionType"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetails":{"type":"object","properties":{"asset_price":{"oneOf":[{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsAssetPrice"},{"type":"null"}],"description":"Price of the order item"},"storefront_fee":{"oneOf":[{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsStorefrontFee"},{"type":"null"}],"description":"Storefront fee associated with the order item"},"acquisition_type":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetailsAcquisitionType","description":"Acquisition type of the order item"}},"description":"Order item pricing details","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetails"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItems":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsStatus","description":"Status of the order item"},"product":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsProduct","description":"Product details"},"is_approved":{"type":"boolean","description":"Is the order item approved"},"pricing_details":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItemsPricingDetails","description":"Order item pricing details"},"is_express_delivery_requested":{"type":"boolean","description":"Is express delivery requested for the order item"}},"title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItems"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataDeliveryAddressType":{"type":"string","enum":["PII","PARTIAL","DELIVERY","COLLECTION","ENTITY","SUPPLIER","BILLING"],"description":"Type of the address","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataDeliveryAddressType"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataDeliveryAddressCountry":{"type":"string","enum":["AD","AE","AF","AG","AI","AL","AM","AN","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","IC","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","XK","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW"],"description":"Country code","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataDeliveryAddressCountry"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataDeliveryAddress":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the address"},"city":{"type":["string","null"],"description":"City name"},"type":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataDeliveryAddressType","description":"Type of the address"},"line1":{"type":["string","null"],"description":"Address line 1"},"line2":{"type":["string","null"],"description":"Address line 2"},"state":{"type":["string","null"],"description":"State code or name"},"country":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataDeliveryAddressCountry","description":"Country code"},"is_valid":{"type":"boolean","description":"Whether the address passes validation"},"post_code":{"type":["string","null"],"description":"Post code"},"phone_number":{"type":["string","null"],"description":"Phone number"},"date_of_birth":{"type":["string","null"],"format":"date","description":"Date of birth (applicable for some address types)"},"tax_id_number":{"type":["string","null"],"description":"Tax ID number (applicable for some address types)"},"passport_number":{"type":["string","null"],"description":"Passport number (applicable for some address types)"},"delivery_instructions":{"type":["string","null"],"description":"Special instructions for deliveries"}},"description":"Order delivery address details","title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataDeliveryAddress"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaData":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the order"},"user":{"oneOf":[{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataUser"},{"type":"null"}],"description":"Details of the order attached user"},"status":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataStatus","description":"Order status"},"created_at":{"type":"string","format":"date-time","description":"Creation timestamp of the order"},"updated_at":{"type":"string","format":"date-time","description":"Last update timestamp of the order"},"order_items":{"type":"array","items":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataOrderItemsItems"},"description":"Order's items details"},"delivery_address":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaDataDeliveryAddress","description":"Order delivery address details"}},"title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaData"},"orders_getITOrderById_Response_200":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaData"}},"title":"orders_getITOrderById_Response_200"},"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaErrorsItems":{"type":"object","properties":{"code":{"type":"string","description":"Error code of the handler which produced the returned error"},"field":{"type":"string","description":"The field name where input validation failed"},"message":{"type":"string","description":"Description of the returned error"}},"title":"ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaErrorsItems"},"RetrieveAnItOrderRequestBadRequestError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"RetrieveAnItOrderRequestBadRequestError"},"ApiErrorRequest":{"type":"object","properties":{"method":{"type":"string","description":"The HTTP method of the failed request"},"url":{"type":"string","description":"The relative URL of the failed request"},"status":{"type":"number","format":"double","description":"The status code of the response"},"api_req_id":{"type":"string","description":"The request ID of the failed request"},"docs":{"type":"string","description":"A link to the official documentation for the requested endpoint resource"},"source":{"type":"string","description":"The source handler which produced the returned error"},"code":{"type":"number","format":"double","description":"The code of the source handler which produced the returned error"}},"title":"ApiErrorRequest"},"ApiError":{"type":"object","properties":{"message":{"type":"string","description":"A description of the returned error"},"path":{"type":"string","description":"The JSON path where input validation failed"}},"title":"ApiError"},"ApiErrorContainer":{"type":"object","properties":{"request":{"$ref":"#/components/schemas/ApiErrorRequest"},"errors":{"type":"array","items":{"$ref":"#/components/schemas/ApiError"}}},"title":"ApiErrorContainer"},"RetrieveAnItOrderRequestInternalServerError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItOrdersOrderIdGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"RetrieveAnItOrderRequestInternalServerError"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUserAddressType":{"type":"string","enum":["PII","PARTIAL","DELIVERY","COLLECTION","ENTITY","SUPPLIER","BILLING"],"description":"Type of the address","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUserAddressType"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUserAddressCountry":{"type":"string","enum":["AD","AE","AF","AG","AI","AL","AM","AN","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","IC","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","XK","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW"],"description":"Country code","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUserAddressCountry"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUserAddress":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the address"},"city":{"type":["string","null"],"description":"City name"},"type":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUserAddressType","description":"Type of the address"},"line1":{"type":["string","null"],"description":"Address line 1"},"line2":{"type":["string","null"],"description":"Address line 2"},"state":{"type":["string","null"],"description":"State code or name"},"country":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUserAddressCountry","description":"Country code"},"is_valid":{"type":"boolean","description":"Whether the address passes validation"},"post_code":{"type":["string","null"],"description":"Post code"},"phone_number":{"type":["string","null"],"description":"Phone number"},"date_of_birth":{"type":["string","null"],"format":"date","description":"Date of birth (applicable for some address types)"},"tax_id_number":{"type":["string","null"],"description":"Tax ID number (applicable for some address types)"},"passport_number":{"type":["string","null"],"description":"Passport number (applicable for some address types)"},"delivery_instructions":{"type":["string","null"],"description":"Special instructions for deliveries"}},"description":"User address details","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUserAddress"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUser":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"string","format":"email"},"description":"Array of user email addresses"},"address":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUserAddress","description":"User address details"},"last_name":{"type":"string","description":"Last name of the user"},"first_name":{"type":"string","description":"First name of the user"},"hris_profile_id":{"type":"string","format":"uuid","description":"The unique identifier of the HRIS profile of the assigned user"}},"description":"Details of the user with asset possession","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUser"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsStatus":{"type":"string","enum":["REQUESTED","APPROVED","DECLINED","CANCELLED"],"description":"Order status","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsStatus"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsStatus":{"type":"string","enum":["PLACED","PROCESSING","AWAITING_PAYMENT","READY_TO_SHIP","SHIPPED","COMPLETED","CANCELLED"],"description":"Status of the order item","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsStatus"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsProductCategory":{"type":"string","enum":["ADAPTER","CABLE","CHAIR","CHARGER","DESK","DESK_RISER","DESK_TIDY","DESKTOP","DOCKING_STATION","DONGLE","FOOTREST","HEADSET","KEYBOARD","LAPTOP","LAPTOP_STAND","MICE_TRACKPAD","MOBILE_DEVICE","MONITOR","MONITOR_ARM","OTHER","PRINTER","SHREDDER","STANDING_MAT","TABLET","TASK_LIGHT","WEBCAM","WIFI_RANGE_EXTENDER","WELCOME_PACK"],"description":"Product category","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsProductCategory"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsProduct":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the product"},"name":{"type":"string","description":"Product name"},"brand":{"type":"string","description":"Product brand"},"category":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsProductCategory","description":"Product category"}},"description":"Product details","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsProduct"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsAssetPriceCurrency":{"type":"string","enum":["EUR","AED","AFN","XCD","ALL","AMD","AOA","ARS","USD","AUD","AWG","AZN","BAM","BDT","XOF","BGN","BHD","BIF","BMD","SGD","BOB","BRL","BSD","BTN","BWP","BYN","BZD","CAD","CDF","XAF","CHF","NZD","CLP","CNY","COP","CRC","CUC","CVE","ANG","CZK","DJF","DOP","DZD","EGP","MAD","ERN","ETB","FJD","FKP","DKK","GBP","GEL","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","INR","IQD","IRR","ISK","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","WST","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LTL","LYD","MDL","MGA","MKD","MMK","MNT","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","XPF","NGN","NIO","NOK","NPR","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SHP","SLL","SOS","SRD","SSP","STD","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","UYU","UZS","VEF","VND","VUV","YER","ZAR","ZMW","ZWD"],"description":"Three-letter currency code for the price","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsAssetPriceCurrency"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsAssetPrice":{"type":"object","properties":{"amount":{"type":"string","description":"Amount"},"currency":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsAssetPriceCurrency","description":"Three-letter currency code for the price"}},"description":"Price of the order item","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsAssetPrice"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsStorefrontFeeCurrency":{"type":"string","enum":["EUR","AED","AFN","XCD","ALL","AMD","AOA","ARS","USD","AUD","AWG","AZN","BAM","BDT","XOF","BGN","BHD","BIF","BMD","SGD","BOB","BRL","BSD","BTN","BWP","BYN","BZD","CAD","CDF","XAF","CHF","NZD","CLP","CNY","COP","CRC","CUC","CVE","ANG","CZK","DJF","DOP","DZD","EGP","MAD","ERN","ETB","FJD","FKP","DKK","GBP","GEL","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","INR","IQD","IRR","ISK","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","WST","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LTL","LYD","MDL","MGA","MKD","MMK","MNT","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","XPF","NGN","NIO","NOK","NPR","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SHP","SLL","SOS","SRD","SSP","STD","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","UYU","UZS","VEF","VND","VUV","YER","ZAR","ZMW","ZWD"],"description":"Three-letter currency code for the price","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsStorefrontFeeCurrency"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsStorefrontFee":{"type":"object","properties":{"amount":{"type":"string","description":"Amount"},"currency":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsStorefrontFeeCurrency","description":"Three-letter currency code for the price"}},"description":"Storefront fee associated with the order item","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsStorefrontFee"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsAcquisitionType":{"type":"string","enum":["RENTAL","PURCHASE","REUSE"],"description":"Acquisition type of the order item","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsAcquisitionType"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetails":{"type":"object","properties":{"asset_price":{"oneOf":[{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsAssetPrice"},{"type":"null"}],"description":"Price of the order item"},"storefront_fee":{"oneOf":[{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsStorefrontFee"},{"type":"null"}],"description":"Storefront fee associated with the order item"},"acquisition_type":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetailsAcquisitionType","description":"Acquisition type of the order item"}},"description":"Order item pricing details","title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetails"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItems":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsStatus","description":"Status of the order item"},"product":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsProduct","description":"Product details"},"is_approved":{"type":"boolean","description":"Is the order item approved"},"pricing_details":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItemsPricingDetails","description":"Order item pricing details"},"is_express_delivery_requested":{"type":"boolean","description":"Is express delivery requested for the order item"}},"title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItems"},"ItOrdersGetResponsesContentApplicationJsonSchemaDataItems":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the order"},"user":{"oneOf":[{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsUser"},{"type":"null"}],"description":"Details of the user with asset possession"},"status":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsStatus","description":"Order status"},"created_at":{"type":"string","format":"date-time","description":"Creation timestamp of the order"},"updated_at":{"type":"string","format":"date-time","description":"Last update timestamp of the order"},"order_items":{"type":"array","items":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItemsOrderItemsItems"},"description":"Order's items details"}},"title":"ItOrdersGetResponsesContentApplicationJsonSchemaDataItems"},"orders_getITOrders_Response_200":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaDataItems"}},"has_more":{"type":"boolean","description":"Whether there are more results available"},"next_cursor":{"type":["string","null"],"description":"Cursor to the next page"},"total_count":{"type":"integer","description":"Total number of records"}},"title":"orders_getITOrders_Response_200"},"ItOrdersGetResponsesContentApplicationJsonSchemaErrorsItems":{"type":"object","properties":{"code":{"type":"string","description":"Error code of the handler which produced the returned error"},"field":{"type":"string","description":"The field name where input validation failed"},"message":{"type":"string","description":"Description of the returned error"}},"title":"ItOrdersGetResponsesContentApplicationJsonSchemaErrorsItems"},"ListItOrdersRequestBadRequestError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"ListItOrdersRequestBadRequestError"},"ListItOrdersRequestInternalServerError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItOrdersGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"ListItOrdersRequestInternalServerError"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataGrade":{"type":"string","enum":["NEW","A","B","C","D","F"],"description":"The condition grade of the asset","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataGrade"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataStatus":{"type":"string","enum":["ACTIVE","SUPPLIER_RETURN","STOLEN","LOST_IN_TRANSIT","WAITING_FOR_CLEARANCE","CLEARED","BINNED","LEFT_WITH_USER","SHRINKAGE","DAMAGED_BY_USER","DAMAGED_IN_TRANSIT","DAMAGED_AT_WAREHOUSE","BEING_REPAIRED","BROKEN_BY_USER","BROKEN_IN_TRANSIT","BROKEN_AT_WAREHOUSE","ADDED_BY_MISTAKE","RETURNED_TO_DEEL"],"description":"Current state of the asset","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataStatus"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataProductCategory":{"type":"string","enum":["ADAPTER","CABLE","CHAIR","CHARGER","DESK","DESK_RISER","DESK_TIDY","DESKTOP","DOCKING_STATION","DONGLE","FOOTREST","HEADSET","KEYBOARD","LAPTOP","LAPTOP_STAND","MICE_TRACKPAD","MOBILE_DEVICE","MONITOR","MONITOR_ARM","OTHER","PRINTER","SHREDDER","STANDING_MAT","TABLET","TASK_LIGHT","WEBCAM","WIFI_RANGE_EXTENDER","WELCOME_PACK"],"description":"Product category","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataProductCategory"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataProductSpecificationsItems":{"type":"object","properties":{"name":{"type":"string","description":"Specification name"},"value":{"type":"string","description":"Specification value"}},"title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataProductSpecificationsItems"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataProduct":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the product"},"name":{"type":"string","description":"Product name"},"brand":{"type":"string","description":"Product brand"},"category":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataProductCategory","description":"Product category"},"specifications":{"type":"array","items":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataProductSpecificationsItems"},"description":"Specifications of the product"}},"description":"Product details","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataProduct"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataLocation":{"type":"string","enum":["WITH_USER","AT_WAREHOUSE","DEEL_WAREHOUSE","ORGANIZATION_WAREHOUSE","CLEARANCE_WAREHOUSE","SUPPLIER","WITH_COURIER","WRITE_OFF"],"description":"Current location type of the asset","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataLocation"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataOwnershipType":{"type":"string","enum":["DEEL","ORGANIZATION"],"description":"Asset owner type","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataOwnershipType"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataOwnership":{"type":"object","properties":{"name":{"type":"string","description":"Asset owner name"},"type":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataOwnershipType","description":"Asset owner type"}},"description":"Asset owner","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataOwnership"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUserAddressType":{"type":"string","enum":["PII","PARTIAL","DELIVERY","COLLECTION","ENTITY","SUPPLIER","BILLING"],"description":"Type of the address","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUserAddressType"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUserAddressCountry":{"type":"string","enum":["AD","AE","AF","AG","AI","AL","AM","AN","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","IC","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","XK","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW"],"description":"Country code","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUserAddressCountry"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUserAddress":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the address"},"city":{"type":["string","null"],"description":"City name"},"type":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUserAddressType","description":"Type of the address"},"line1":{"type":["string","null"],"description":"Address line 1"},"line2":{"type":["string","null"],"description":"Address line 2"},"state":{"type":["string","null"],"description":"State code or name"},"country":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUserAddressCountry","description":"Country code"},"is_valid":{"type":"boolean","description":"Whether the address passes validation"},"post_code":{"type":["string","null"],"description":"Post code"},"phone_number":{"type":["string","null"],"description":"Phone number"},"date_of_birth":{"type":["string","null"],"format":"date","description":"Date of birth (applicable for some address types)"},"tax_id_number":{"type":["string","null"],"description":"Tax ID number (applicable for some address types)"},"passport_number":{"type":["string","null"],"description":"Passport number (applicable for some address types)"},"delivery_instructions":{"type":["string","null"],"description":"Special instructions for deliveries"}},"description":"User address details","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUserAddress"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUser":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"string","format":"email"},"description":"Array of user email addresses"},"address":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUserAddress","description":"User address details"},"last_name":{"type":"string","description":"Last name of the user"},"first_name":{"type":"string","description":"First name of the user"},"hris_profile_id":{"type":"string","format":"uuid","description":"The unique identifier of the HRIS profile of the assigned user"}},"description":"Details of the user with asset possession","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUser"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataPurchaseValueCurrency":{"type":"string","enum":["EUR","AED","AFN","XCD","ALL","AMD","AOA","ARS","USD","AUD","AWG","AZN","BAM","BDT","XOF","BGN","BHD","BIF","BMD","SGD","BOB","BRL","BSD","BTN","BWP","BYN","BZD","CAD","CDF","XAF","CHF","NZD","CLP","CNY","COP","CRC","CUC","CVE","ANG","CZK","DJF","DOP","DZD","EGP","MAD","ERN","ETB","FJD","FKP","DKK","GBP","GEL","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","INR","IQD","IRR","ISK","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","WST","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LTL","LYD","MDL","MGA","MKD","MMK","MNT","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","XPF","NGN","NIO","NOK","NPR","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SHP","SLL","SOS","SRD","SSP","STD","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","UYU","UZS","VEF","VND","VUV","YER","ZAR","ZMW","ZWD"],"description":"Three-letter currency code for the price","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataPurchaseValueCurrency"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataPurchaseValue":{"type":"object","properties":{"amount":{"type":"string","description":"Amount"},"currency":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataPurchaseValueCurrency","description":"Three-letter currency code for the price"}},"description":"Purchase value of the asset","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataPurchaseValue"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseAddressType":{"type":"string","enum":["PII","PARTIAL","DELIVERY","COLLECTION","ENTITY","SUPPLIER","BILLING"],"description":"Type of the address","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseAddressType"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseAddressCountry":{"type":"string","enum":["AD","AE","AF","AG","AI","AL","AM","AN","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","IC","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","XK","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW"],"description":"Country code","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseAddressCountry"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseAddress":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the address"},"city":{"type":["string","null"],"description":"City name"},"type":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseAddressType","description":"Type of the address"},"line1":{"type":["string","null"],"description":"Address line 1"},"line2":{"type":["string","null"],"description":"Address line 2"},"state":{"type":["string","null"],"description":"State code or name"},"country":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseAddressCountry","description":"Country code"},"is_valid":{"type":"boolean","description":"Whether the address passes validation"},"post_code":{"type":["string","null"],"description":"Post code"},"phone_number":{"type":["string","null"],"description":"Phone number"},"date_of_birth":{"type":["string","null"],"format":"date","description":"Date of birth (applicable for some address types)"},"tax_id_number":{"type":["string","null"],"description":"Tax ID number (applicable for some address types)"},"passport_number":{"type":["string","null"],"description":"Passport number (applicable for some address types)"},"delivery_instructions":{"type":["string","null"],"description":"Special instructions for deliveries"}},"description":"Warehouse address details","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseAddress"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseOwnership":{"type":"string","enum":["DEEL","ORGANIZATION"],"description":"Warehouse ownership type","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseOwnership"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseWarehouseType":{"type":"string","enum":["DEEL","ORGANIZATION","CLEARANCE"],"description":"Warehouse type","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseWarehouseType"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouse":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the warehouse"},"name":{"type":"string","description":"Warehouse or storage location name"},"address":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseAddress","description":"Warehouse address details"},"ownership":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseOwnership","description":"Warehouse ownership type"},"warehouse_type":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouseWarehouseType","description":"Warehouse type"}},"description":"Details of the warehouse with asset possession","title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouse"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaData":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the item"},"grade":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataGrade","description":"The condition grade of the asset"},"status":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataStatus","description":"Current state of the asset"},"product":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataProduct","description":"Product details"},"location":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataLocation","description":"Current location type of the asset"},"ownership":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataOwnership","description":"Asset owner"},"created_at":{"type":"string","format":"date-time","description":"Creation timestamp of the asset"},"updated_at":{"type":"string","format":"date-time","description":"Last update timestamp of the asset"},"assigned_user":{"oneOf":[{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedUser"},{"type":"null"}],"description":"Details of the user with asset possession"},"purchase_date":{"type":["string","null"],"format":"date","description":"Purchase date of the asset"},"serial_number":{"type":["string","null"],"description":"Asset serial number"},"purchase_value":{"oneOf":[{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataPurchaseValue"},{"type":"null"}],"description":"Purchase value of the asset"},"assigned_warehouse":{"oneOf":[{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaDataAssignedWarehouse"},{"type":"null"}],"description":"Details of the warehouse with asset possession"}},"title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaData"},"assets_getITAssetById_Response_200":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaData"}},"title":"assets_getITAssetById_Response_200"},"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaErrorsItems":{"type":"object","properties":{"code":{"type":"string","description":"Error code of the handler which produced the returned error"},"field":{"type":"string","description":"The field name where input validation failed"},"message":{"type":"string","description":"Description of the returned error"}},"title":"ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaErrorsItems"},"RetrieveAnItAssetRequestBadRequestError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"RetrieveAnItAssetRequestBadRequestError"},"RetrieveAnItAssetRequestInternalServerError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItAssetsAssetIdGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"RetrieveAnItAssetRequestInternalServerError"},"ItAssetsGetParametersLocation":{"type":"string","enum":["WITH_USER","AT_WAREHOUSE","DEEL_WAREHOUSE","ORGANIZATION_WAREHOUSE","CLEARANCE_WAREHOUSE","SUPPLIER","WITH_COURIER","WRITE_OFF"],"title":"ItAssetsGetParametersLocation"},"ItAssetsGetParametersCategory":{"type":"string","enum":["ADAPTER","CABLE","CHAIR","CHARGER","DESK","DESK_RISER","DESK_TIDY","DESKTOP","DOCKING_STATION","DONGLE","FOOTREST","HEADSET","KEYBOARD","LAPTOP","LAPTOP_STAND","MICE_TRACKPAD","MOBILE_DEVICE","MONITOR","MONITOR_ARM","OTHER","PRINTER","SHREDDER","STANDING_MAT","TABLET","TASK_LIGHT","WEBCAM","WIFI_RANGE_EXTENDER","WELCOME_PACK"],"title":"ItAssetsGetParametersCategory"},"ItAssetsGetParametersStatus":{"type":"string","enum":["ACTIVE","ARCHIVED"],"title":"ItAssetsGetParametersStatus"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsGrade":{"type":"string","enum":["NEW","A","B","C","D","F"],"description":"The condition grade of the asset","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsGrade"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsStatus":{"type":"string","enum":["ACTIVE","SUPPLIER_RETURN","STOLEN","LOST_IN_TRANSIT","WAITING_FOR_CLEARANCE","CLEARED","BINNED","LEFT_WITH_USER","SHRINKAGE","DAMAGED_BY_USER","DAMAGED_IN_TRANSIT","DAMAGED_AT_WAREHOUSE","BEING_REPAIRED","BROKEN_BY_USER","BROKEN_IN_TRANSIT","BROKEN_AT_WAREHOUSE","ADDED_BY_MISTAKE","RETURNED_TO_DEEL"],"description":"Current state of the asset","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsStatus"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsProductCategory":{"type":"string","enum":["ADAPTER","CABLE","CHAIR","CHARGER","DESK","DESK_RISER","DESK_TIDY","DESKTOP","DOCKING_STATION","DONGLE","FOOTREST","HEADSET","KEYBOARD","LAPTOP","LAPTOP_STAND","MICE_TRACKPAD","MOBILE_DEVICE","MONITOR","MONITOR_ARM","OTHER","PRINTER","SHREDDER","STANDING_MAT","TABLET","TASK_LIGHT","WEBCAM","WIFI_RANGE_EXTENDER","WELCOME_PACK"],"description":"Product category","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsProductCategory"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsProduct":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the product"},"name":{"type":"string","description":"Product name"},"brand":{"type":"string","description":"Product brand"},"category":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsProductCategory","description":"Product category"}},"description":"Product details","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsProduct"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsLocation":{"type":"string","enum":["WITH_USER","AT_WAREHOUSE","DEEL_WAREHOUSE","ORGANIZATION_WAREHOUSE","CLEARANCE_WAREHOUSE","SUPPLIER","WITH_COURIER","WRITE_OFF"],"description":"Current location type of the asset","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsLocation"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsOwnershipType":{"type":"string","enum":["DEEL","ORGANIZATION"],"description":"Asset owner type","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsOwnershipType"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsOwnership":{"type":"object","properties":{"name":{"type":"string","description":"Asset owner name"},"type":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsOwnershipType","description":"Asset owner type"}},"description":"Asset owner","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsOwnership"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUserAddressType":{"type":"string","enum":["PII","PARTIAL","DELIVERY","COLLECTION","ENTITY","SUPPLIER","BILLING"],"description":"Type of the address","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUserAddressType"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUserAddressCountry":{"type":"string","enum":["AD","AE","AF","AG","AI","AL","AM","AN","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","IC","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","XK","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW"],"description":"Country code","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUserAddressCountry"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUserAddress":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the address"},"city":{"type":["string","null"],"description":"City name"},"type":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUserAddressType","description":"Type of the address"},"line1":{"type":["string","null"],"description":"Address line 1"},"line2":{"type":["string","null"],"description":"Address line 2"},"state":{"type":["string","null"],"description":"State code or name"},"country":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUserAddressCountry","description":"Country code"},"is_valid":{"type":"boolean","description":"Whether the address passes validation"},"post_code":{"type":["string","null"],"description":"Post code"},"phone_number":{"type":["string","null"],"description":"Phone number"},"date_of_birth":{"type":["string","null"],"format":"date","description":"Date of birth (applicable for some address types)"},"tax_id_number":{"type":["string","null"],"description":"Tax ID number (applicable for some address types)"},"passport_number":{"type":["string","null"],"description":"Passport number (applicable for some address types)"},"delivery_instructions":{"type":["string","null"],"description":"Special instructions for deliveries"}},"description":"User address details","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUserAddress"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUser":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"string","format":"email"},"description":"Array of user email addresses"},"address":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUserAddress","description":"User address details"},"last_name":{"type":"string","description":"Last name of the user"},"first_name":{"type":"string","description":"First name of the user"},"hris_profile_id":{"type":"string","format":"uuid","description":"The unique identifier of the HRIS profile of the assigned user"}},"description":"Details of the user with asset possession","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUser"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsPurchaseValueCurrency":{"type":"string","enum":["EUR","AED","AFN","XCD","ALL","AMD","AOA","ARS","USD","AUD","AWG","AZN","BAM","BDT","XOF","BGN","BHD","BIF","BMD","SGD","BOB","BRL","BSD","BTN","BWP","BYN","BZD","CAD","CDF","XAF","CHF","NZD","CLP","CNY","COP","CRC","CUC","CVE","ANG","CZK","DJF","DOP","DZD","EGP","MAD","ERN","ETB","FJD","FKP","DKK","GBP","GEL","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","INR","IQD","IRR","ISK","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","WST","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LTL","LYD","MDL","MGA","MKD","MMK","MNT","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","XPF","NGN","NIO","NOK","NPR","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SHP","SLL","SOS","SRD","SSP","STD","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","UYU","UZS","VEF","VND","VUV","YER","ZAR","ZMW","ZWD"],"description":"Three-letter currency code for the price","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsPurchaseValueCurrency"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsPurchaseValue":{"type":"object","properties":{"amount":{"type":"string","description":"Amount"},"currency":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsPurchaseValueCurrency","description":"Three-letter currency code for the price"}},"description":"Purchase value of the asset","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsPurchaseValue"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseAddressType":{"type":"string","enum":["PII","PARTIAL","DELIVERY","COLLECTION","ENTITY","SUPPLIER","BILLING"],"description":"Type of the address","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseAddressType"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseAddressCountry":{"type":"string","enum":["AD","AE","AF","AG","AI","AL","AM","AN","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","IC","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","XK","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW"],"description":"Country code","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseAddressCountry"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseAddress":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the address"},"city":{"type":["string","null"],"description":"City name"},"type":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseAddressType","description":"Type of the address"},"line1":{"type":["string","null"],"description":"Address line 1"},"line2":{"type":["string","null"],"description":"Address line 2"},"state":{"type":["string","null"],"description":"State code or name"},"country":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseAddressCountry","description":"Country code"},"is_valid":{"type":"boolean","description":"Whether the address passes validation"},"post_code":{"type":["string","null"],"description":"Post code"},"phone_number":{"type":["string","null"],"description":"Phone number"},"date_of_birth":{"type":["string","null"],"format":"date","description":"Date of birth (applicable for some address types)"},"tax_id_number":{"type":["string","null"],"description":"Tax ID number (applicable for some address types)"},"passport_number":{"type":["string","null"],"description":"Passport number (applicable for some address types)"},"delivery_instructions":{"type":["string","null"],"description":"Special instructions for deliveries"}},"description":"Warehouse address details","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseAddress"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseOwnership":{"type":"string","enum":["DEEL","ORGANIZATION"],"description":"Warehouse ownership type","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseOwnership"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseWarehouseType":{"type":"string","enum":["DEEL","ORGANIZATION","CLEARANCE"],"description":"Warehouse type","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseWarehouseType"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouse":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the warehouse"},"name":{"type":"string","description":"Warehouse or storage location name"},"address":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseAddress","description":"Warehouse address details"},"ownership":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseOwnership","description":"Warehouse ownership type"},"warehouse_type":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouseWarehouseType","description":"Warehouse type"}},"description":"Details of the warehouse with asset possession","title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouse"},"ItAssetsGetResponsesContentApplicationJsonSchemaDataItems":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier of the item"},"grade":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsGrade","description":"The condition grade of the asset"},"status":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsStatus","description":"Current state of the asset"},"product":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsProduct","description":"Product details"},"location":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsLocation","description":"Current location type of the asset"},"ownership":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsOwnership","description":"Asset owner"},"created_at":{"type":"string","format":"date-time","description":"Creation timestamp of the asset"},"updated_at":{"type":"string","format":"date-time","description":"Last update timestamp of the asset"},"assigned_user":{"oneOf":[{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedUser"},{"type":"null"}],"description":"Details of the user with asset possession"},"purchase_date":{"type":["string","null"],"format":"date","description":"Purchase date of the asset"},"serial_number":{"type":["string","null"],"description":"Asset serial number"},"purchase_value":{"oneOf":[{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsPurchaseValue"},{"type":"null"}],"description":"Purchase value of the asset"},"assigned_warehouse":{"oneOf":[{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItemsAssignedWarehouse"},{"type":"null"}],"description":"Details of the warehouse with asset possession"}},"title":"ItAssetsGetResponsesContentApplicationJsonSchemaDataItems"},"assets_getITAssets_Response_200":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaDataItems"}},"has_more":{"type":"boolean","description":"Whether there are more results available"},"next_cursor":{"type":["string","null"],"description":"Cursor to the next page"},"total_count":{"type":"integer","description":"Total number of records"}},"title":"assets_getITAssets_Response_200"},"ItAssetsGetResponsesContentApplicationJsonSchemaErrorsItems":{"type":"object","properties":{"code":{"type":"string","description":"Error code of the handler which produced the returned error"},"field":{"type":"string","description":"The field name where input validation failed"},"message":{"type":"string","description":"Description of the returned error"}},"title":"ItAssetsGetResponsesContentApplicationJsonSchemaErrorsItems"},"ListItAssetsRequestBadRequestError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"ListItAssetsRequestBadRequestError"},"ListItAssetsRequestInternalServerError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItAssetsGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"ListItAssetsRequestInternalServerError"},"ItPoliciesGetResponsesContentApplicationJsonSchemaDataItems":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier for the policy"},"name":{"type":"string","description":"Policy name"}},"title":"ItPoliciesGetResponsesContentApplicationJsonSchemaDataItems"},"policies_getITPolicies_Response_200":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/ItPoliciesGetResponsesContentApplicationJsonSchemaDataItems"}}},"title":"policies_getITPolicies_Response_200"},"ItPoliciesGetResponsesContentApplicationJsonSchemaErrorsItems":{"type":"object","properties":{"code":{"type":"string","description":"Error code of the handler which produced the returned error"},"field":{"type":"string","description":"The field name where input validation failed"},"message":{"type":"string","description":"Description of the returned error"}},"title":"ItPoliciesGetResponsesContentApplicationJsonSchemaErrorsItems"},"ListItHardwarePoliciesRequestBadRequestError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItPoliciesGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"ListItHardwarePoliciesRequestBadRequestError"},"ListItHardwarePoliciesRequestInternalServerError":{"type":"object","properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/ItPoliciesGetResponsesContentApplicationJsonSchemaErrorsItems"}}},"title":"ListItHardwarePoliciesRequestInternalServerError"}},"securitySchemes":{"deelToken":{"type":"http","scheme":"bearer","description":"## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"},"oauth2":{"type":"http","scheme":"bearer","description":"Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/"}}}}