I am trying to post into my theme.liquid file, but it gives a 404 error, i can find the asset fine with a get method, but the post does not work, this is my code any suggestions?
$response = $shop->api()->rest('POST', '/admin/api/202110/themes/128946634999/assets.json',
[ "asset" => [
"key" => "layout/theme.liquid",
"value" => "<p>This is a test API upload.</p>"
]
]);
2
Answers
I figured out how to insert into the layout/theme.liquid file, i found that you need to have both the {{ content_for_header }} and {{ content_for_layout }} in the string before shopify recognizes it.
You can try this code