Skip to content

Instantly share code, notes, and snippets.

@tristansokol
Created July 26, 2017 19:52
Show Gist options
  • Save tristansokol/46f56d0e4628863e3c2976f1489cf923 to your computer and use it in GitHub Desktop.
Save tristansokol/46f56d0e4628863e3c2976f1489cf923 to your computer and use it in GitHub Desktop.
<?php
$location_id = 'location_id';
$api_instance = new SquareConnect\Api\V1ItemsApi();
$body = array(
'name'=>'Pots',
'description'=> 'Containers for gardening',
'variations'=> array(
array(
'name'=>'Large',
'price_money'=>array(
'amount'=>600,
'currency_code'=>'USD'
)
),
array(
'name'=>'Small',
'price_money'=>array(
'amount'=>300,
'currency_code'=>'USD'
)
)
)
);
$result = $api_instance->createItem($location_id, $body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment