All URIs are relative to https://api.attio.com
| Method | HTTP request | Description |
|---|---|---|
| ScimV2SchemasGet | Get /scim/v2/Schemas | List SCIM schemas |
ScimV2SchemasGet200Response ScimV2SchemasGet(ctx).Execute()
List SCIM schemas
package main
import (
"context"
"fmt"
"os"
libattio "github.com/sid6mathur/libattio"
)
func main() {
configuration := libattio.NewConfiguration()
apiClient := libattio.NewAPIClient(configuration)
resp, r, err := apiClient.SCIMSchemasAPI.ScimV2SchemasGet(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `SCIMSchemasAPI.ScimV2SchemasGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ScimV2SchemasGet`: ScimV2SchemasGet200Response
fmt.Fprintf(os.Stdout, "Response from `SCIMSchemasAPI.ScimV2SchemasGet`: %v\n", resp)
}This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiScimV2SchemasGetRequest struct via the builder pattern
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]