{ "opencollection": "1.0.0", "info": { "name": "Zeplin Authorization Projects API", "version": "1.38.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "Get all projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.zeplin.dev/v1/projects", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Pagination limit" }, { "name": "workspace", "value": "", "type": "query", "description": "Workspace of the project, it can be `personal` or the id of organization" }, { "name": "status", "value": "", "type": "query", "description": "Filter by status" }, { "name": "offset", "value": "", "type": "query", "description": "Pagination offset" } ] }, "docs": "List all projects that user is a member of" }, { "info": { "name": "Get a single project", "type": "http" }, "http": { "method": "GET", "url": "https://api.zeplin.dev/v1/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project id" } ] }, "docs": "Get a project by id" }, { "info": { "name": "Update a project", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.zeplin.dev/v1/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project id" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a project's name and description" }, { "info": { "name": "Get project members", "type": "http" }, "http": { "method": "GET", "url": "https://api.zeplin.dev/v1/projects/:project_id/members", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project id" }, { "name": "limit", "value": "", "type": "query", "description": "Pagination limit" }, { "name": "offset", "value": "", "type": "query", "description": "Pagination offset" } ] }, "docs": "List all members of the project" }, { "info": { "name": "Invite a member", "type": "http" }, "http": { "method": "POST", "url": "https://api.zeplin.dev/v1/projects/:project_id/members", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project id" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Invite a member to the project." }, { "info": { "name": "Remove a member", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.zeplin.dev/v1/projects/:project_id/members/:member_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project id" }, { "name": "member_id", "value": "", "type": "path", "description": "Member id" } ] }, "docs": "Remove a member from the project." }, { "info": { "name": "Get project design tokens", "type": "http" }, "http": { "method": "GET", "url": "https://api.zeplin.dev/v1/projects/:project_id/design_tokens", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project id" }, { "name": "include_linked_styleguides", "value": "", "type": "query", "description": "Whether to include linked styleguides or not" }, { "name": "token_name_case", "value": "", "type": "query", "description": "Case for token names" } ] }, "docs": "Fetch all design tokens of the project" } ] } ], "bundled": true }