Files
medusa-store/www/apps/api-reference/specs/admin/components/schemas/AdminInvite.yaml
github-actions[bot] a5ed061d6c chore(docs): Updated API Reference (automated) (#10531)
* chore(docs): Generated API Reference (automated)

* fixes

---------

Co-authored-by: olivermrbl <olivermrbl@users.noreply.github.com>
Co-authored-by: Shahed Nasser <shahednasser@gmail.com>
2024-12-10 17:57:32 +01:00

48 lines
1005 B
YAML

type: object
description: The invite's details.
x-schemaName: AdminInvite
required:
- id
- email
- accepted
- token
- expires_at
- created_at
- updated_at
properties:
id:
type: string
title: id
description: The invite's ID.
email:
type: string
title: email
description: The invite's email.
format: email
accepted:
type: boolean
title: accepted
description: Whether the invite has been accepted.
token:
type: string
title: token
description: The invite's token.
expires_at:
type: string
title: expires_at
description: The invite's expiry date.
format: date-time
metadata:
type: object
description: The invite's metadata, can hold custom key-value pairs.
created_at:
type: string
format: date-time
title: created_at
description: The date the invite was created.
updated_at:
type: string
format: date-time
title: updated_at
description: The date the invite was updated.