Get invitation
GET/unit/invitation/:invitationId
Gets information about the invitation.
Request
Path Parameters
invitationId stringrequired
The invitation ID.
Example: 867c0ba0-5a53-475b-8194-1f565f6ec197
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
code int32
The response code.
data
object
The invitation for creating a DW user.
createTime date-time
The creation time of the invitation.
creatorAccountId string
The ID of the account that is used to send the invitation.
email string
The email address.
expireTime date-time
The expiration time of the invitation.
id string
The invitation ID.
status InvitationStatus
Possible values: [PENDING
, ACCEPTED
, EXPIRED
]
The status of the invitation.
msg string
The response message.
{
"code": 0,
"data": {
"createTime": "2023-05-16T14:20:11.01+09:00",
"creatorAccountId": "62023101198877",
"email": "[email protected]",
"expireTime": "2023-05-18T14:20:11.01+09:00",
"id": "867c0ba0-5a53-475b-8194-1f565f6ec197",
"status": "PENDING"
},
"msg": "string"
}
Loading...