Created
July 26, 2017 19:52
-
-
Save tristansokol/46f56d0e4628863e3c2976f1489cf923 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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