Identity Organization
Implementation of the identity organization part for organization management in a standards-based manner.
For handling organizationId
, you can use any online tool to perform the following steps:
Decoding the base64
organizationId
: First, decode the base64organizationId
yielding a string in the formatciscospark://us/ORGANIZATION/<standard-id>
. You should then extract the<standard-id>
part.For example, if decoding the base64
organizationId
gives youciscospark://us/ORGANIZATION/efc3a1a1-5fcc-45bd-b650-4bf98d0ae26
, you should extractefc3a1a1-5fcc-45bd-b650-4bf98d0ae26
as the standard ID.Encoding the standard ID: To encode the standard ID, prepend it with
ciscospark://us/ORGANIZATION/
and convert to base64 to obtain the base64organizationId
.For example, if you have the standard ID
efc3a1a1-5fcc-45bd-b650-4bf98d0ae26
, you should encodeciscospark://us/ORGANIZATION/efc3a1a1-5fcc-45bd-b650-4bf98d0ae26
to get the base64organizationId
.