# List pending invites

get ` https://app.mk.io/api/v1/organization/invites`

This endpoint shows the current list of invitations that have been sent by this MK.IO organization and which have not been accepted or declined yet.

RBAC Capability Required: `core.invite.get`

## Authentication

Authorization Bearer

Bearer authentication of the form `Bearer <token>`, where token is your auth token.

## Response

**200 OK**

- **kind** `string` Required  
  The kind of record.

- **value** `list of objects [InviteGetSchema](https://docs.mediakind.com/api-reference/management-api/schemas/invitegetschema)` Required  
  List of pending invites
  
  Show 3 properties  
  Hide 3 properties

- **kind** `string` Optional  
      The kind of record.

- **metadata** `object [InviteMetadataSchema](https://docs.mediakind.com/api-reference/management-api/schemas/invitemetadataschema)` Optional  
      Metadata  
      Show 2 properties  
      Hide 2 properties

- **created** `string` Optional format: date-time  
          The time when the resource was created

- **id** `string` Required format: uuid  
          The ID of the resource

- **spec** `object [InviteSpecSchema](https://docs.mediakind.com/api-reference/management-api/schemas/invitespecschema)` Required  
      Specification  
      Show 6 properties  
      Hide 6 properties

- **comment** `string` Required  
          Comment to explain why the user has been invited to collaborate with your organization

- **email** `string` Required  
          Email of the user to be invited

- **invitedByEmail** `string` Required  
          Contact email of user who made the invite

- **invitedByName** `string` Required  
          Name of user who made the invite

- **organizationName** `string` Required  
          Name of the organization the invite refers to

- **teams** `list of strings` Optional  
          List of team names to add this user to when they accept.

## Errors

**400 Bad Request**

- **error** `object [ErrorDetail](https://docs.mediakind.com/api-reference/management-api/schemas/errordetail)` Required  
  Pertinent information about the error  
  Show 3 properties  
  Hide 3 properties

- **code** `string` Required  
      The error code.

- **detail** `string` Required  
      The error message.

- **extraDetail** `map from strings to any` Optional  
      Extra information regarding this error.

- **ref** `string` Required  
          A reference to the request that caused the error.

- **status** `integer` Required  
          The HTTP status code

**401 Unauthorized**

- **error** `object [ErrorDetail](https://docs.mediakind.com/api-reference/management-api/schemas/errordetail)` Required  
  Pertinent information about the error

... [Similar structure for 403, 404, 429, 500]...
