Skip to main content
Call GET /users/me/outfits/sync to fetch only the outfit changes that occurred since your last sync. The response includes full outfit objects — including scene placement data — for any outfits created or modified, IDs of deleted outfits, and a server_time cursor for your next call. If you omit updated_since, all outfits are returned.

Endpoint

Query parameters

updated_since
string
ISO 8601 datetime. Only outfits updated or deleted after this time are returned. If omitted, all outfits are returned from the beginning.

Response fields

Status: 200 OK
updated
array
required
Outfit objects that were created or modified since updated_since. Each object includes full scene placement data.
deleted
array
required
IDs of outfits that were deleted since updated_since.
server_time
string
required
Current server time in ISO 8601 format. Use this as updated_since on your next sync call.

Example

cURL
Response
Use the server_time from the response as updated_since on your next sync call. Avoid generating timestamps on the client to prevent clock skew from causing missed updates.