function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Dr. Thomas MillerDr. Thomas Miller 

SCIM /Individuals

The SCIM schema (as returned from a /Schemas call) contains

        {
            "id": "urn:salesforce:schemas:extension:2.0",
            "name": "urn:salesforce:schemas:extension:2.0",
            "type": "complex",
            "description": "Salesforce User extensions",
            "schema": "urn:salesforce:schemas:extension:2.0",
            "endpoint": "/Individuals",

            "attributes": [
                {
                    "name": "alias",
                    "type": "string",
                    "description": "8 character nickanme",
                    "mutability": "readWrite",
                    "required": false,
                    "caseExact": false
                }
            ],
            "meta": {
                "location": "https://{Server Name}/services/scim/v2/Schemas/urn:salesforce:schemas:extension:2.0",

                "resourceType": "Schema"
            }
        }


but calling

https://{{Server Name}}/services/scim/v2/Individuals


returns


    {
        "errorCode": "NOT_FOUND",
        "message": "Could not find a match for URL"
    }


How do I get access to the alias attribute?
martha simons 7martha simons 7
Thanks  service 
Fixed
Dr. Thomas MillerDr. Thomas Miller
Hi Martha,

can you explain what "fixed" means? Is /Individual now exposed? Will it return the user's alias attribute? Is there also a way to set the alias attribute with POST, PUT or PATCH?