Skip to main content

providers_scim_create

POST 

/api/v3//providers/scim/

SCIMProvider Viewset

Request

Body

required

    name stringrequired

    Possible values: non-empty

    property_mappings uuid[]
    property_mappings_group uuid[]

    Property mappings used for group creation/updating.

    url stringrequired

    Base URL to SCIM requests, usually ends in /v2

    Possible values: non-empty

    verify_certificates boolean
    token stringrequired

    Authentication token

    Possible values: non-empty

    exclude_users_service_account boolean
    filter_group uuidnullable

Responses

Schema

    pk ID (integer)required
    name stringrequired
    property_mappings uuid[]
    property_mappings_group uuid[]

    Property mappings used for group creation/updating.

    component stringrequired

    Get object component so that we know how to edit the object

    assigned_backchannel_application_slug stringrequired

    Internal application name, used in URLs.

    assigned_backchannel_application_name stringrequired

    Application's display Name.

    verbose_name stringrequired

    Return object's verbose_name

    verbose_name_plural stringrequired

    Return object's plural verbose_name

    meta_model_name stringrequired

    Return internal model name

    url stringrequired

    Base URL to SCIM requests, usually ends in /v2

    verify_certificates boolean
    token stringrequired

    Authentication token

    exclude_users_service_account boolean
    filter_group uuidnullable

Authorization: http

name: authentiktype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "/api/v3/providers/scim/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var content = new StringContent("{\n \"name\": \"string\",\n \"property_mappings\": [\n \"3fa85f64-5717-4562-b3fc-2c963f66afa6\"\n ],\n \"property_mappings_group\": [\n \"3fa85f64-5717-4562-b3fc-2c963f66afa6\"\n ],\n \"url\": \"string\",\n \"verify_certificates\": true,\n \"token\": \"string\",\n \"exclude_users_service_account\": true,\n \"filter_group\": \"3fa85f64-5717-4562-b3fc-2c963f66afa6\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
/api/v3
Auth
Body required
{
  "name": "string",
  "property_mappings": [
    "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  ],
  "property_mappings_group": [
    "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  ],
  "url": "string",
  "verify_certificates": true,
  "token": "string",
  "exclude_users_service_account": true,
  "filter_group": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}