• martha simons 7
  • NEWBIE
  • 0 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
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?