## Initialize new SSO connector `iam.sso.create(SSOCreateParams**kwargs) -> SSOCreateResponse` **post** `/accounts/{account_id}/sso_connectors` Initialize new SSO connector ### Parameters - `account_id: str` Account identifier tag. - `email_domain: str` Email domain of the new SSO connector - `begin_verification: Optional[bool]` Begin the verification process after creation - `use_fedramp_language: Optional[bool]` Controls the display of FedRAMP language to the user during SSO login ### Returns - `class SSOCreateResponse: …` - `id: Optional[str]` SSO Connector identifier tag. - `created_on: Optional[datetime]` Timestamp for the creation of the SSO connector - `email_domain: Optional[str]` - `enabled: Optional[bool]` - `updated_on: Optional[datetime]` Timestamp for the last update of the SSO connector - `use_fedramp_language: Optional[bool]` Controls the display of FedRAMP language to the user during SSO login - `verification: Optional[Verification]` - `code: Optional[str]` DNS verification code. Add this entire string to the DNS TXT record of the email domain to validate ownership. - `status: Optional[Literal["awaiting", "pending", "failed", "verified"]]` The status of the verification code from the verification process. - `"awaiting"` - `"pending"` - `"failed"` - `"verified"` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) sso = client.iam.sso.create( account_id="023e105f4ecef8ad9ca31a8372d0c353", email_domain="example.com", ) print(sso.id) ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": { "id": "023e105f4ecef8ad9ca31a8372d0c353", "created_on": "2025-01-01T12:21:02.0000Z", "email_domain": "example.com", "enabled": false, "updated_on": "2025-01-01T12:21:02.0000Z", "use_fedramp_language": false, "verification": { "code": "cloudflare_dashboard_sso=023e105f4ecef8ad9ca31a8372d0c353", "status": "pending" } } } ```