---
title: SCIM Actions
description: The SCIM protocol uses the REST concept to define the actions a SCIM Consumer can perform on a resource managed by a SCIM Service Provider. These actions are:
component: developer-resources
page_id: developer-resources:scim_11_developer_guide:scim-actions
canonical_url: https://docs.pingidentity.com/developer-resources/scim_11_developer_guide/scim-actions.html
revdate: September 30, 2020
page_aliases: ["dev_scim11_overview_actions.adoc"]
---

# SCIM Actions

The SCIM protocol uses the REST concept to define the actions a SCIM Consumer can perform on a resource managed by a SCIM Service Provider. These actions are:

|        |                                                                                                                                          |
| ------ | ---------------------------------------------------------------------------------------------------------------------------------------- |
| GET    | Reads a resource (or resources) from the Service Provider                                                                                |
| POST   | Creates a new resource at the Service Provider                                                                                           |
| PUT    | Updates an existing resource, as this action requires the entire resource provided in the body, it is more like a replace than an update |
| PATCH  | Updates an existing resource with changes (where supported).	The PATCH action is optional and not supported in some implementations      |
| DELETE | Deletes a resource at the Service Provider                                                                                               |
