Skip to main content

Sign up for team

POST /api/v1/Teams/signup

Description

This endpoint is used to sign up for a team.

Tags: Teams

URL:
/api/v{version}/Teams/signup

ApiKey:
No API key required

Content-Type:
application/json, text/json, application/*+json

Path Parameters:
version: string, required
Accept-Language: header, optional, change the default response message language from English(en) to French(fr) or English(en)

Request Body:
TeamRegistrationRequest

Response:
Success, returns a signup response.

Error Codes:
400: Bad Request
404: Not Found

/api/v1/Teams/signup

Headers

Content-TypeValue
Accept-Language

Headers

Content-TypeValue
Content-Typeapplication/json

Headers

Content-TypeValue
Accepttext/plain

Body (raw)

{
"inviteId": `<string>`,
"firstName": `<string>`,
"lastName": `<string>`,
"phoneCode": `<string>`,
"phoneNumber": `<string>`,
"password": `<string>`,
"confirmPassword": `<string>`
}

Response: 200

{
"succeeded": `<boolean>`,
"message": `<string>`,
"errors": [
`<string>`,
`<string>`
],
"data": {
"userId": `<uuid>`
}
}

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /api/v1/Teams/signup \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!