We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
It looks like the Product entity is missing some parameters (title, identifier, product_type).
Also there is no function for /products/identifier/:identifier
Can you please add it? Or give me the permissions to create a branche/pull request? Thanks a lot!
/**
@param string|int $identifier
@return static
@throws ApiException */ public function findByIdentifier($identifier) { $result = $this->connection()->get($this->getEndpoint() . '/identifier/' . urlencode($identifier));
return $this->makeFromResponse($result); }
.
The text was updated successfully, but these errors were encountered:
Yes, would be awesome if this could be added!
Sorry, something went wrong.
@ralphjsmit I've forked it, since there is no reaction. Check : https://github.com/dario-dib/moneybird-php-client
That's nice, thanks Dario!
I've created a pull request for this issue
No branches or pull requests
Hi!
It looks like the Product entity is missing some parameters (title, identifier, product_type).
Also there is no function for /products/identifier/:identifier
Can you please add it? Or give me the permissions to create a branche/pull request? Thanks a lot!
/**
*/
protected $fillable = [
'id',
'title',
'description',
'price',
'currency',
'frequency',
'frequency_type',
'tax_rate_id',
'ledger_account_id',
'identifier',
'product_type',
'created_at',
'updated_at',
];
/**
@param string|int $identifier
@return static
@throws ApiException
*/
public function findByIdentifier($identifier)
{
$result = $this->connection()->get($this->getEndpoint() . '/identifier/' . urlencode($identifier));
return $this->makeFromResponse($result);
}
.
The text was updated successfully, but these errors were encountered: