Hello,
I'm trying to bulk load group identifiers using the SAS Viya CLI with the following command:
./sas-viya identities bulkload-group-identifiers --file /path/file.csv
Here is the content of my CSV file:
group,AB,123,wx
group,CD,124,yz
However, after running the command, I get the following error:
The Bulk Loading of Group identifiers completed.
{
"details": [
"Failed creating 2 GROUP identifier(s). See errors reported for more information."
],
"error": {
"errorCode": 10586,
"errors": [
{
"errorCode": 10530,
"httpStatusCode": 404,
"message": "The identity \"AB\" was not found."
},
{
"errorCode": 10530,
"httpStatusCode": 404,
"message": "The identity \"CD\" was not found."
}
],
"httpStatusCode": 400,
"message": "The input used to bulk load identifier values was not valid."
}
}
If anyone has a working example or a correct way to create groups in bulk using a CSV file, I would really appreciate your help or any guidance.
Thanks in advance!