Invites a user to a shared project
Invites a user to a shared project
Path Parameters
projectId string required
Project ID.
application/json
Request Body array required
Array of email addresses.
- Array [
- ]
string
Responses
- 200
- 401
- 403
- 404
A list of shared project invitations.
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
email string nullable
reason string nullable
status string nullable
[
{
"email": "string",
"reason": "string",
"status": "string"
}
]
Unauthorized
Access denied
Not found
POST /share/:projectId/invite
Request
Request
curl / cURL
curl -L -X POST 'https://api.walr.com/share/:projectId/invite' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '[
"string"
]'
python / requests
curl -L -X POST 'https://api.walr.com/share/:projectId/invite' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '[
"string"
]'
go / native
curl -L -X POST 'https://api.walr.com/share/:projectId/invite' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '[
"string"
]'
nodejs / axios
curl -L -X POST 'https://api.walr.com/share/:projectId/invite' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '[
"string"
]'
ruby / Net::HTTP
curl -L -X POST 'https://api.walr.com/share/:projectId/invite' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '[
"string"
]'
csharp / RestSharp
curl -L -X POST 'https://api.walr.com/share/:projectId/invite' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '[
"string"
]'
php / cURL
curl -L -X POST 'https://api.walr.com/share/:projectId/invite' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '[
"string"
]'
java / OkHttp
curl -L -X POST 'https://api.walr.com/share/:projectId/invite' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '[
"string"
]'
powershell / RestMethod
curl -L -X POST 'https://api.walr.com/share/:projectId/invite' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '[
"string"
]'