---
title: "Create terms of service status for new user"
method: POST
path: "/terms_of_service_user_statuses"
tags: ["Terms of service user statuses"]
---

# Create terms of service status for new user

`POST /terms_of_service_user_statuses`

Sets the status for a terms of service for a user.

## Request body

- object
  - `tos` object, required — The terms of service to set the status for.
    - `type` 'terms_of_service', required — The type of object.
    - `id` string, required — The ID of terms of service.
  - `user` object, required — The user to set the status for.
    - `type` 'user', required — The type of object.
    - `id` string, required — The ID of user.
  - `is_accepted` boolean, required — Whether the user has accepted the terms.

## Response `201`

Returns a terms of service status object.

- TermsOfServiceUserStatus — The association between a Terms of Service and a user.
  - `id` string, required — The unique identifier for this terms of service user status.
  - `type` 'terms_of_service_user_status', required — The value will always be `terms_of_service_user_status`.
  - `tos` object — The terms of service.
    - `id` string, required — The unique identifier for this terms of service.
    - `type` 'terms_of_service', required — The value will always be `terms_of_service`.
  - `user` object — The user.
    - `id` string, required — The unique identifier for this user.
    - `type` 'user', required — The value will always be `user`.
    - `name` string — The display name of this user.
    - `login` string, email — The primary email address of this user.
  - `is_accepted` boolean — If the user has accepted the terms of services.
  - `created_at` string, date-time — When the legal item was created.
  - `modified_at` string, date-time — When the legal item was modified.

## Other responses

- `default` — An unexpected client error.

---

[API](https://skmtc.net/box/apis/platform-api.md) · [All operations](https://skmtc.net/box/apis/platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/box/platform-api/revisions/ba8f087e1a4d/schema)
