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-Type | Value |
|---|---|
| Accept-Language |
Headers
| Content-Type | Value |
|---|---|
| Content-Type | application/json |
Headers
| Content-Type | Value |
|---|---|
| Accept | text/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
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!