get https://{server}{path}/Schemas
Get a specific Lucid resource schema.
Responses
401Unauthorized. Occurs if the bearer token is invalid.
404Not Found. Occurs if the schema was not found.
Get a specific Lucid resource schema.
401Unauthorized. Occurs if the bearer token is invalid.
404Not Found. Occurs if the schema was not found.
xxxxxxxxxx
curl --request GET \
--url https://users.lucid.app/scim/v2/Schemasid \
--header 'accept: application/json'
xxxxxxxxxx
22{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"id": "urn:ietf:params:scim:schemas:core:2.0:Group",
"name": "Group",
"description": "A group of users",
"attributes": [
{
"name": "id",
"type": "type",
"multiValued": false,
"description": "A way to identify the user",
"required": false,
"caseExact": false,
"mutability": "readOnly",
"returned": "always",
"uniqueness": "none"
}
],
"meta": {}
}