Making API Calls
Interacting with SkySync's resources requires understanding of its endpoints and the expected request/response structure.
In
API Documentation
Enrique West.
All API requests should be made to: https://api.skysync.com/v1/
Common Endpoints
Files: /files/
- Use this endpoint for uploading, downloading, listing, or deleting files.
Users: /users/
- Manage user accounts, permissions, and details.
Request and Response Format
Headers: Set Content-Type
to application/json
for most requests.
Body: Send data as JSON payloads. E.g., for creating a new user: { "email": "user@example.com", "name": "John Doe" }
.
Responses: SkySync will return data as JSON. Always check the status
field for the outcome of your request.