Skip to Content

Slugify field

Strip a field value of characters not commonly found in slugs.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
pipe0-platform-operation
P
pipe0
Always
Managed

0.00 credits

Input Fields

string
string_input

Output Fields

string
slugified

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    pipes: [{pipe_id: 'field:slugify@1'}],
    input: [{id: '1', string_input: 'input value'}]
  })
};

fetch('https://api.pipe0.com/v1/pipes/run', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));