We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const createTeam = async (accessToken: string, teamName: string) => { const userId = USER_DETAILS['email']; const client = Client.initWithMiddleware({ authProvider: new CustomTokenCredential(accessToken), }); const createTeamPayload = { "template@odata.bind": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')", "displayName": "Roundglass", "description": "My Sample Team's Description", "members": [ { "@odata.type": "#microsoft.graph.aadUserConversationMember", "roles": ["owner"], "user@odata.bind": "https://graph.microsoft.com/v1.0/users/" + userId } ] }; try { const response = await client.api('/teams').post(createTeamPayload); console.log(response); console.log("Team created:", response.headers); console.log("Team created:", response.headers.location); } catch (error) { console.error("Error creating team:", error); } };
ReadableStream {locked: false}locked: false[[Prototype]]: ReadableStream Team created: undefined
HTTP/1.1 202 Accepted Content-Type: application/json Location: /teams('dbd8de4f-5d47-48da-87f1-594bed003375')/operations('3a6fdce1-c261-48bc-89de-1cfef658c0d5') Content-Location: /teams('dbd8de4f-5d47-48da-87f1-594bed003375') Content-Length: 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this is response which is coming
expected response should be
The text was updated successfully, but these errors were encountered: