Update Group
PUT
/v1/groups
const url = 'https://example.com/api/v1/groups';const options = { method: 'PUT', headers: {Authorization: '<Authorization>', 'Content-Type': 'application/json'}, body: '{"currency":"example","name":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://example.com/api/v1/groups \ --header 'Authorization: <Authorization>' \ --header 'Content-Type: application/json' \ --data '{ "currency": "example", "name": "example" }'Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ”User Data
Media type application/json
object
currency
string
name
string
Example generated
{ "currency": "example", "name": "example"}Responses
Section titled “ Responses ”OK
Media type application/json
object
createdAt
string
currency
string
id
string
name
string
updatedAt
string
Example generated
{ "createdAt": "example", "currency": "example", "id": "example", "name": "example", "updatedAt": "example"}