The SCIM Rotate Token Start method wraps the SCIM Rotate Token Start API endpoint. The organization_id will be automatically inferred from the logged-in Member's session. This method cannot be used to start token rotations for SCIM connections in other Organizations.
SCIM Rotate Token Start
Method parameters
connection_id* string
Response fields
request_id string
status_code int
connection object
import { Text, TouchableOpacity, View } from 'react-native';
import { useStytchB2BClient } from '@stytch/react-native/b2b';
export const RotateSCIMTokenStart = () => {
const stytch = useStytchB2BClient();
const rotateSCIMTokenStart = () => {
stytch.scim.rotateStart('scim-connection-test-cdd5415a-c470-42be-8369-5c90cf7762dc');
};
return (
<View>
<TouchableOpacity onPress={rotateSCIMTokenStart}>
<Text>Start SCIM Token Rotation</Text>
</TouchableOpacity>
</View>
);
};
RESPONSE
200
{
"connection": {
"organization_id": "organization-test-07971b06-ac8b-4cdb-9c15-63b17e653931"
"connection_id": "scim-connection-test-cdd5415a-c470-42be-8369-5c90cf7762dc"
"status": "active",
"display_name": "My SCIM Connection"
"identity_provider": "okta"
"base_url": "https://test.stytch.com/v1/b2b/scim/scim-connection-test-cdd5415a-c470-42be-8369-5c90cf7762dc"
"bearer_token_last_four": "sdko"
"bearer_token_expires_at": "2029-03-20T21:28:28Z
"next_bearer_token": "8TqbGcJyFFLSNveQPGZ861xSE2B7CPtC2gnyasAIbDiUrcjn"
"next_bearer_token_expires_at": "2030-03-20T21:28:28Z"
},
}