curl --request PATCH \
--url https://api-sandbox.synctera.com/v0/licenses/{license_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"license_number": 10321
}'
{
"business_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
"creation_time": "2010-05-06T12:23:34.321Z",
"customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
"id": "7df5c505-b47c-490d-855f-c1b3cd99327f",
"last_updated_time": "2010-05-06T12:23:34.321Z",
"last_verified_time": "2023-05-06T12:23:34.321Z",
"license_classification": "RECREATIONAL_CANNABIS",
"license_expiration_date": "2023-01-01",
"license_issuance_date": "2023-01-01",
"license_number": 10321,
"license_type": "MRB",
"license_type_description": "Limited Marijuana Cultivation Facility",
"licensee_address": "1064 elm street, New York",
"licensee_name": "Apex Corp",
"licensing_authority": "Alcohol & Marijuana Control Office",
"status": "ACCEPTED",
"tenant": "abcdef_ghijkl"
}
Update a License by ID.
curl --request PATCH \
--url https://api-sandbox.synctera.com/v0/licenses/{license_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"license_number": 10321
}'
{
"business_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
"creation_time": "2010-05-06T12:23:34.321Z",
"customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
"id": "7df5c505-b47c-490d-855f-c1b3cd99327f",
"last_updated_time": "2010-05-06T12:23:34.321Z",
"last_verified_time": "2023-05-06T12:23:34.321Z",
"license_classification": "RECREATIONAL_CANNABIS",
"license_expiration_date": "2023-01-01",
"license_issuance_date": "2023-01-01",
"license_number": 10321,
"license_type": "MRB",
"license_type_description": "Limited Marijuana Cultivation Facility",
"licensee_address": "1064 elm street, New York",
"licensee_name": "Apex Corp",
"licensing_authority": "Alcohol & Marijuana Control Office",
"status": "ACCEPTED",
"tenant": "abcdef_ghijkl"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
License record identifier
"ba4f84d7-fa20-4010-a573-0bbca57ab589"
Updated License representation.
The response is of type object
.
Was this page helpful?