Example usage
The following is a sample ArcGIS Online request URL used to access the federation resource:
https://org.arcgis.com/sharing/rest/portals/0123456789ABCDEF/idp/federation?f=pjsonThe following is a sample ArcGIS Enterprise request URL used to access the federation resource:
https://organization.example.com/<context>/sharing/rest/portals/0123456789ABCDEF/idp/federation?f=pjsonDescription
List organization identity federation information configured using a federation of identity providers, such as SWITCHaai.
Request parameters
| Parameter | Details | 
|---|---|
| 
 | The response format. The default format is  Values:  | 
Response properties
| Property | Details | 
|---|---|
| 
 | The organization identity federation ID. | 
| 
 | The SAML federation name. | 
| 
 | SAML federation discovery service URL. | 
| 
 | SAML federation aggregate metadata service URL. | 
| 
 | Base64-encoded certificate text used to validate metadata service, enclosed between  | 
| 
 | Entity ID used to identify the organization in SAML federation. | 
| 
 | Enterprise members joining mode to the organization, automatically or through an invitation. Values:  | 
| 
 | If  Values:  | 
| 
 | The default role members are assigned, used when  | 
| 
 | If  Values:  | 
| 
 | If  Values:  | 
| 
 | If  Values:  | 
| 
 | The default user license type members are assigned, used when  | 
| 
 | An array of groups members are added upon joining the organization, used when  Example  | 
| 
 | If  Values:  | 
JSON Response syntax
{
  "id": "<organization identity federation ID>",
  "name": "<SAML federation name>",
  "discoveryServiceUrl": "<path to discovery service>",
  "metadataServiceUrl": "<path to metadata service>",
  "certificate": "<certificate text>",
  "entityId": "<entity id>",
  "signUpMode": "Automatic | Invitation"
  "encryptionSupported": true | false,
  "roleId": "<role id>",
  "supportSignedRequest": true | false,
  "useSHA256": true | false,
  "supportsLogoutRequest": true | false,
  "userLicenseType": "<user license type ID>",
  "groups": "["group id1", "group id2"]",
  "updateProfileAtSignin": true | false
}JSON Response example
{
  "id": "WXpNWCKvSxNJ8K7D",
  "name": "My SAML federation",
  "discoveryServiceUrl": "https://discovery.example.com",
  "metadataServiceUrl": "https://metadata.example.com",
  "certificate": "",
  "entityId": "org.maps.arcgis.com",
  "signUpMode": "Automatic",
  "encryptionSupported": false,
  "roleId": "org_user",
  "supportSignedRequest": false,
  "supportsLogoutRequest": false,
  "userLicenseType": "editorUT",
  "groups": "["6dc1a6f134b44ebb8d1f1b55f0ad8753"]",
  "updateProfileAtSignin": true
}