{ "opencollection": "1.0.0", "info": { "name": "Stack Overflow for Teams Answers Questions API", "version": "v3" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Questions", "type": "folder" }, "items": [ { "info": { "name": "Get Team Questions", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackoverflowteams.com/v3/teams/:team/questions", "params": [ { "name": "team", "value": "my-team", "type": "path", "description": "The slug of the Stack Overflow for Teams workspace. If your team lives at stackoverflowteams.com/c/my-team, the slug is my-team." }, { "name": "page", "value": "", "type": "query", "description": "Page number (1-indexed)" }, { "name": "pagesize", "value": "", "type": "query", "description": "Number of results per page (max 100)" }, { "name": "sort", "value": "", "type": "query", "description": "Field to sort results by" }, { "name": "order", "value": "", "type": "query", "description": "Sort order" }, { "name": "filter", "value": "", "type": "query", "description": "Filter to control which fields are returned" } ] }, "docs": "Returns a list of questions in the specified Stack Overflow for Teams workspace. Supports filtering by tags, status, and date ranges." }, { "info": { "name": "Create a Team Question", "type": "http" }, "http": { "method": "POST", "url": "https://api.stackoverflowteams.com/v3/teams/:team/questions", "params": [ { "name": "team", "value": "my-team", "type": "path", "description": "The slug of the Stack Overflow for Teams workspace. If your team lives at stackoverflowteams.com/c/my-team, the slug is my-team." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new question in the specified Stack Overflow for Teams workspace. Requires write access (Business tier)." }, { "info": { "name": "Get a Team Question", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackoverflowteams.com/v3/teams/:team/questions/:id", "params": [ { "name": "team", "value": "my-team", "type": "path", "description": "The slug of the Stack Overflow for Teams workspace. If your team lives at stackoverflowteams.com/c/my-team, the slug is my-team." }, { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" }, { "name": "filter", "value": "", "type": "query", "description": "Filter to control which fields are returned" } ] }, "docs": "Returns a specific question from a Stack Overflow for Teams workspace by its ID." }, { "info": { "name": "Update a Team Question", "type": "http" }, "http": { "method": "PUT", "url": "https://api.stackoverflowteams.com/v3/teams/:team/questions/:id", "params": [ { "name": "team", "value": "my-team", "type": "path", "description": "The slug of the Stack Overflow for Teams workspace. If your team lives at stackoverflowteams.com/c/my-team, the slug is my-team." }, { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing question in a Stack Overflow for Teams workspace. Requires write access." }, { "info": { "name": "Get Answers for a Team Question", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackoverflowteams.com/v3/teams/:team/questions/:id/answers", "params": [ { "name": "team", "value": "my-team", "type": "path", "description": "The slug of the Stack Overflow for Teams workspace. If your team lives at stackoverflowteams.com/c/my-team, the slug is my-team." }, { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" }, { "name": "filter", "value": "", "type": "query", "description": "Filter to control which fields are returned" } ] }, "docs": "Returns all answers to a specific question in a Stack Overflow for Teams workspace." }, { "info": { "name": "Get All Questions", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackoverflowteams.com/v3/questions", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number (1-indexed)" }, { "name": "pagesize", "value": "", "type": "query", "description": "Number of results per page (max 100)" }, { "name": "fromdate", "value": "", "type": "query", "description": "Unix timestamp for minimum creation date" }, { "name": "todate", "value": "", "type": "query", "description": "Unix timestamp for maximum creation date" }, { "name": "order", "value": "", "type": "query", "description": "Sort order" }, { "name": "sort", "value": "", "type": "query", "description": "Field to sort results by" }, { "name": "tagged", "value": "", "type": "query", "description": "Semicolon-delimited list of tags to filter by" }, { "name": "filter", "value": "", "type": "query", "description": "Filter to control which fields are returned" }, { "name": "site", "value": "", "type": "query", "description": "Stack Exchange site identifier (use stackoverflow for Stack Overflow)" } ] }, "docs": "Returns questions on Stack Overflow sorted by activity, creation date, votes, or relevance. Supports filtering by tags and date ranges." }, { "info": { "name": "Get Questions by IDs", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackoverflowteams.com/v3/questions/:ids", "params": [ { "name": "ids", "value": "12345;67890", "type": "path", "description": "Semicolon-delimited list of question IDs (max 100)" }, { "name": "site", "value": "", "type": "query", "description": "Stack Exchange site identifier (use stackoverflow for Stack Overflow)" }, { "name": "filter", "value": "", "type": "query", "description": "Filter to control which fields are returned" } ] }, "docs": "Returns the questions identified by a semicolon-delimited list of question IDs (maximum 100)." }, { "info": { "name": "Get Answers for Questions", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackoverflowteams.com/v3/questions/:ids/answers", "params": [ { "name": "ids", "value": "", "type": "path", "description": "Semicolon-delimited list of question IDs" }, { "name": "site", "value": "", "type": "query", "description": "Stack Exchange site identifier (use stackoverflow for Stack Overflow)" }, { "name": "page", "value": "", "type": "query", "description": "Page number (1-indexed)" }, { "name": "pagesize", "value": "", "type": "query", "description": "Number of results per page (max 100)" }, { "name": "order", "value": "", "type": "query", "description": "Sort order" }, { "name": "sort", "value": "", "type": "query", "description": "Field to sort results by" }, { "name": "filter", "value": "", "type": "query", "description": "Filter to control which fields are returned" } ] }, "docs": "Returns the answers for the questions identified by a semicolon- delimited list of question IDs." }, { "info": { "name": "Get Unanswered Questions", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackoverflowteams.com/v3/questions/unanswered", "params": [ { "name": "site", "value": "", "type": "query", "description": "Stack Exchange site identifier (use stackoverflow for Stack Overflow)" }, { "name": "page", "value": "", "type": "query", "description": "Page number (1-indexed)" }, { "name": "pagesize", "value": "", "type": "query", "description": "Number of results per page (max 100)" }, { "name": "order", "value": "", "type": "query", "description": "Sort order" }, { "name": "sort", "value": "", "type": "query", "description": "Field to sort results by" }, { "name": "tagged", "value": "", "type": "query", "description": "Semicolon-delimited list of tags to filter by" }, { "name": "filter", "value": "", "type": "query", "description": "Filter to control which fields are returned" } ] }, "docs": "Returns Stack Overflow questions that have no upvoted or accepted answers. These are questions that need community attention." }, { "info": { "name": "Get Featured Questions", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackoverflowteams.com/v3/questions/featured", "params": [ { "name": "site", "value": "", "type": "query", "description": "Stack Exchange site identifier (use stackoverflow for Stack Overflow)" }, { "name": "page", "value": "", "type": "query", "description": "Page number (1-indexed)" }, { "name": "pagesize", "value": "", "type": "query", "description": "Number of results per page (max 100)" }, { "name": "tagged", "value": "", "type": "query", "description": "Semicolon-delimited list of tags to filter by" }, { "name": "filter", "value": "", "type": "query", "description": "Filter to control which fields are returned" } ] }, "docs": "Returns Stack Overflow questions that have active bounties. Bounty questions are featured to attract answers." }, { "info": { "name": "Get Questions by User", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackoverflowteams.com/v3/users/:ids/questions", "params": [ { "name": "ids", "value": "", "type": "path", "description": "Semicolon-delimited list of user IDs" }, { "name": "site", "value": "", "type": "query", "description": "Stack Exchange site identifier (use stackoverflow for Stack Overflow)" }, { "name": "page", "value": "", "type": "query", "description": "Page number (1-indexed)" }, { "name": "pagesize", "value": "", "type": "query", "description": "Number of results per page (max 100)" }, { "name": "order", "value": "", "type": "query", "description": "Sort order" }, { "name": "sort", "value": "", "type": "query", "description": "Field to sort results by" }, { "name": "filter", "value": "", "type": "query", "description": "Filter to control which fields are returned" } ] }, "docs": "Returns questions asked by users identified by a semicolon-delimited list of user IDs." } ] } ], "bundled": true }