in src/WorkplaceSearch/Request/CreateExternalIdentity.php [34:43]
public function __construct(
string $contentSourceId,
ExternalIdentityCreateDefinition $external_identity_create_definition,
) {
$this->method = 'POST';
$content_source_id = urlencode($contentSourceId);
$this->path = "/api/ws/v1/sources/$content_source_id/external_identities";
$this->headers['Content-Type'] = 'application/json';
$this->body = $external_identity_create_definition;
}