PayNow

InviteDto

idFlakeIdRequired
created_atstringRequired
When the invite was created.
created_byActorDtoRequired
idFlakeIdOptional
typeenumRequired
Possible enum values
  • anonymous
  • user
  • api_key
  • customer
  • game_server
  • internal
  • admin
  • platform
  • global_customer
role_idFlakeIdRequired
store_idFlakeIdRequired
tokenstringRequired
The token the invited user redeems to accept the invite.
user_emailstringRequired
The email address the invite was sent to.
accepted_atstringOptional
When the invite was accepted. Unset while the invite is still pending.
accepted_by_userActorDtoOptional
idFlakeIdOptional
typeenumRequired
Possible enum values
  • anonymous
  • user
  • api_key
  • customer
  • game_server
  • internal
  • admin
  • platform
  • global_customer
updated_atstringOptional
When the invite was last updated.
updated_byActorDtoOptional
idFlakeIdOptional
typeenumRequired
Possible enum values
  • anonymous
  • user
  • api_key
  • customer
  • game_server
  • internal
  • admin
  • platform
  • global_customer
Example
{
  "id": "411486491630370816",
  "created_at": "2024-01-01T00:00:00Z",
  "created_by": {
    "id": "411486491630370816",
    "type": "anonymous"
  },
  "role_id": "411486491630370816",
  "store_id": "411486491630370816",
  "token": "string",
  "user_email": "string",
  "accepted_at": "2024-01-01T00:00:00Z",
  "accepted_by_user": {
    "id": "411486491630370816",
    "type": "anonymous"
  },
  "updated_at": "2024-01-01T00:00:00Z",
  "updated_by": {
    "id": "411486491630370816",
    "type": "anonymous"
  }
}