-
How can I bulk import a cable that has a single side_a interface and multiple side_b destinations? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It's been asked before, e.g. #13206, #12387, #10319. It's not possible to import multi-termination cables via CSV as the column headings are However, you should be able to use the Django ORM (#13280, #12391) or the REST API (#13211, #11629, #11878 - note that the latter bug is about updating existing cables, not creating new ones) |
Beta Was this translation helpful? Give feedback.
It's been asked before, e.g. #13206, #12387, #10319.
It's not possible to import multi-termination cables via CSV as the column headings are
side_(a|b)_(device|type|name)
only; and people have tried and failed to use JSON/YAML import. The capabilities of JSON/YAML import are not well documented and have very few test cases in the code.However, you should be able to use the Django ORM (#13280, #12391) or the REST API (#13211, #11629, #11878 - note that the latter bug is about updating existing cables, not creating new ones)