- Overview
- Authorization Workflow
- Permissions
- Sandbox
- API Models
- Available API Models
- Request Apidog Access
- OPENAPI SPECIFICATION
- Research Docs
- Amazon Warehousing and Distribution
- Authorization
- Catalog Items
- Catalog [Deprecated]
- Definitions
- Easy Ship
- FBAInbound
- listInboundPlans
- createInboundPlan
- getInboundPlan
- listInboundPlanBoxes
- cancelInboundPlan
- listInboundPlanItems
- updateInboundPlanName
- listPackingGroupBoxes
- listPackingGroupItems
- setPackingInformation
- listPackingOptions
- generatePackingOptions
- confirmPackingOption
- listInboundPlanPallets
- listPlacementOptions
- generatePlacementOptions
- confirmPlacementOption
- getShipment
- listShipmentBoxes
- listShipmentContentUpdatePreviews
- generateShipmentContentUpdatePreviews
- getShipmentContentUpdatePreview
- confirmShipmentContentUpdatePreview
- getDeliveryChallanDocument
- listDeliveryWindowOptions
- generateDeliveryWindowOptions
- confirmDeliveryWindowOptions
- listShipmentItems
- updateShipmentName
- listShipmentPallets
- cancelSelfShipAppointment
- getSelfShipAppointmentSlots
- generateSelfShipAppointmentSlots
- scheduleSelfShipAppointment
- updateShipmentSourceAddress
- updateShipmentTrackingDetails
- listTransportationOptions
- generateTransportationOptions
- confirmTransportationOptions
- listItemComplianceDetails
- updateItemComplianceDetails
- createMarketplaceItemLabels
- listPrepDetails
- setPrepDetails
- getInboundOperationStatus
- getItemEligibilityPreview
- FBAInventory
- FBAOutbound
- Feeds
- Fees
- Finance
- Invoices [Brazil]
- Listings Items
- Merchant Fulfillment
- Orders
- ProductPricing
- Reports
- Sales
- Sellers
- Service
- getServiceJobByServiceJobIdGET
- cancelServiceJobByServiceJobIdPUT
- completeServiceJobByServiceJobIdPUT
- getServiceJobsGET
- addAppointmentForServiceJobByServiceJobIdPOST
- rescheduleAppointmentForServiceJobByServiceJobIdPOST
- assignAppointmentResourcesPUT
- setAppointmentFulfillmentDataPUT
- getRangeSlotCapacityPOST
- getFixedSlotCapacityPOST
- updateSchedulePUT
- createReservationPOST
- updateReservationPUT
- cancelReservationDELETE
- getAppointmmentSlotsByJobIdGET
- getAppointmentSlotsGET
- createServiceDocumentUploadDestinationPOST
- ShipmentInvoice[Brazil]
- Shipping
- getRates
- createShipment
- directPurchaseShipment
- getShipment
- purchaseShipment
- cancelShipment
- oneClickShipment
- purchaseLabels
- getTracking
- retrieveShippingLabel
- getShipmentDocuments
- purchaseShipment
- cancelShipment
- getRates
- getAdditionalInputs
- getAccount
- getCarrierAccountFormInputs
- getTrackingInformation
- getCarrierAccounts
- linkCarrierAccount
- unlinkCarrierAccount
- generateCollectionForm
- getCollectionFormHistory
- getUnmanifestedShipments
- getCollectionForm
- getAccessPoints
- Supply Sources
- Tokens
- Uploads
- Notifications
updateSchedule
Pending
PUT
/service/v1/serviceResources/{resourceId}/schedules
service
Last modified:2024-11-28 09:36:30
Maintainer:Not configured
Rate (requests per second) | Burst |
---|---|
5 | 20 |
x-amzn-RateLimit-Limit
response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see Usage Plans and Rate Limits in the Selling Partner API.Request
Path Params
resourceId
stringÂ
required
>= 1 characters<= 100 characters
Query Params
marketplaceIds
array[string]
required
<= 1 items
Body Params application/json
Request schema for the `updateSchedule` operation.
schedules
array[object (AvailabilityRecord) {4}]Â
required
AvailabilityRecord
s to represent the capacity of a resource over a time range.startTime
string <date-time>
required
endTime
string <date-time>
required
recurrence
object (Recurrence)Â
optional
capacity
integerÂ
optional
>= 1
Example
{
"schedules": [
{
"startTime": "2019-08-24T14:15:22Z",
"endTime": "2019-08-24T14:15:22Z",
"recurrence": {
"endTime": "2019-08-24T14:15:22Z",
"daysOfWeek": [
"MONDAY"
],
"daysOfMonth": [
1
]
},
"capacity": 1
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://sandbox.sellingpartnerapi-na.amazon.com/service/v1/serviceResources//schedules?marketplaceIds' \
--header 'Content-Type: application/json' \
--data-raw '{
"schedules": [
{
"startTime": "2019-08-24T14:15:22Z",
"endTime": "2019-08-24T14:15:22Z",
"recurrence": {
"endTime": "2019-08-24T14:15:22Z",
"daysOfWeek": [
"MONDAY"
],
"daysOfMonth": [
1
]
},
"capacity": 1
}
]
}'
Responses
🟢200OK
application/json
Headers
x-amzn-RateLimit-Limit
stringÂ
optional
x-amzn-RequestId
stringÂ
optional
Body
Response schema for the `updateSchedule` operation.
payload
array[object (UpdateScheduleRecord) {3}]Â
optional
UpdateScheduleRecords
for which the error/warning has occurred.availability
object (AvailabilityRecord)Â
optional
AvailabilityRecord
to represent the capacity of a resource over a time range.warnings
array[object (Warning) {3}]Â
optional
errors
array[object (Error) {3}]Â
optional
errors
array[object (Error) {3}]Â
optional
Example
{
"payload": [
{
"availability": {
"startTime": "2019-08-24T14:15:22Z",
"endTime": "2019-08-24T14:15:22Z",
"recurrence": {
"endTime": "2019-08-24T14:15:22Z",
"daysOfWeek": [
"MONDAY"
],
"daysOfMonth": [
1
]
},
"capacity": 1
},
"warnings": [
{
"code": "string",
"message": "string",
"details": "string"
}
],
"errors": [
{
"code": "string",
"message": "string",
"details": "string"
}
]
}
],
"errors": [
{
"code": "string",
"message": "string",
"details": "string"
}
]
}
🟠400Bad Request
🟠403Forbidden
🟠404Record Not Found
🟠413413
🟠415415
🟠429429
🔴500Server Error
🔴503Service Unavailable