---
title: "Accept or decline invitation to a team"
url: "https://docs.signnow.com/docs/manage-users/operations/accept-decline-invitation-to-team"
type: "endpoint"
section: "manage-users"
slug: "manage-users/operations/accept-decline-invitation-to-team"
method: "PUT"
path: "/team/{request_id}/request"
operation_id: "accept-decline-invitation-to-team"
authorization: "bearer"
---

# Accept or decline invitation to a team

`PUT /team/{request_id}/request`

This endpoint allows user to accept or deny their invite to join a team

## Authorization

bearer

## Path Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `request_id` | string | Yes |  |

## Request Body

**Schema**

```json
{
  "type": "object",
  "properties": {}
}
```

**Example** (`application/json`)

```json
{
  "accept": true
}
```

## Responses

### 200

**Example** (`application/json`)

```json
{
  "result": "success"
}
```

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X PUT \
  "https://api.signnow.com/team/{request_id}/request" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"accept": true}'
```

---
*Full reference: https://docs.signnow.com/docs/manage-users/operations/accept-decline-invitation-to-team*
